$(function(){
	
	//efeito input=text
	$('.inputbox').hover(function(){
		$(this).css('border','2px solid #999');
		$(this).css('background','#fff');
	},function(){
		$(this).css('border','2px solid #fff');
		$(this).css('background','2px solid #f1f1f1');
	});	

	$('.slidetopo').hover(function(){
		$(this).fadeTo('slow','0.5');
	},function(){
		$(this).fadeTo('slow','1.0');
	});	
});

