$(document).ready(function(){
	$(".element_menu, .element_menu_contactar").hover(
	function() {
	$(this).stop().animate({"opacity": "1"}, 400);
	},
	function() {
	$(this).stop().animate({"opacity": "0"}, 400);
	});
 
});

