$(document).ready(function(){
			   
		$('#menu li').hover(function(){	
			$('img',this).animate({ 
				opacity: 1.0
			}, 500 );	
		},function(){	
			if(!$('img',this).parent().hasClass("selected")){
				$('img',this).animate({ 
					opacity: 0.3
				}, 500 );	
			}
		});

		$('#mainContent a').hover(function(){	
			var imagenplac =$('img',this);
			imagenplac.attr('src','images/'+imagenplac.attr('name')+'.jpg');
		  	$(this).next("em").animate({opacity: "show", top: "-75"}, 600);
		},function(){	
			var imagenplac =$('img',this);
			imagenplac.attr('src','images/'+imagenplac.attr('name')+'_h.jpg');
			$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
		});

});


