$(document).ready(function (){

function efeitoOver(idObjeto){  
	$(idObjeto).hover(
	function() {
		$(this).stop().animate({"opacity": "0.75"}, 400);
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, 200);
	});
}

efeitoOver("input, textarea, a");

});
