// JavaScript Document

$(document).ready(function() {
		
		$('a img').mouseover(function(){
					$(this).fadeTo("slowest",0.66);				
					
			});
			$('a img').mouseout(function(){
					$(this).fadeTo("slowest",1);				
					
			});
	
			
		
});

