// JavaScript Document

$(document).ready(function() {
		
		$('#pie a img').mouseover(function(){
					$(this).fadeTo("slowest",0.66);				
					
			});
			$('#pie a img').mouseout(function(){
					$(this).fadeTo("slowest",1);				
					
			});
	$('#cuerpo a img').mouseover(function(){
					$(this).fadeTo("slowest",0.66);				
					
			});
			$('#cuerpo a img').mouseout(function(){
					$(this).fadeTo("slowest",1);				
					
			});
			
			
			$('#an a img').mouseover(function(){
					$(this).fadeTo("slowest",0.66);				
					
			});
			$('#an a img').mouseout(function(){
					$(this).fadeTo("slowest",1);				
					
			});
				$('#contenedor_inicio a img').mouseover(function(){
					$(this).fadeTo("slowest",0.66);				
					
			});
			$('#contenedor_inicio a img').mouseout(function(){
					$(this).fadeTo("slowest",1);				
					
			});
		
});

