// JavaScript Document

jQuery(function ( $ ){
	
	// novo select
	$('select').before('<div></div>');
	$('select').prev('div').addClass('novoSelect');
	$('.novoSelect').text('selecione');
	$('select').live('change', function(){
		var novovalor = $(this).find(":selected").text();
		$(this).prev().text(novovalor);
	});
	$('select').focus(function(){
		var tamanho = $(this).prev('div').css('height');
		//alert(tamanho)
		$(this).prev('div').css({'background-position':'0 -'+ tamanho});
	}).blur(function(){
		$(this).prev('div').css({'background-position':'0 0'});
	});
	
	
	//novo radio button
	$('input:radio').before('<div />');
	$('input:radio').prev('div').addClass('novoRadio');
	$('input:radio').mousedown(function(){
		if(!$(this).is(':checked')){
			$(this).prev('div').css({'background-position':'0 -13px'});
		}
	}).mouseup(function(){
				if(!$(this).is(':checked')){
				$(this).parent().parent().find('input:radio').prev('div').css({'background-position':'0 0'});
			$(this).prev('div').css({'background-position':'0 -26px'});
		}
	});
	
});
