// JavaScript Document
$(document).ready(
	function() {
		$("img").fadeTo(250, 1.0);

		
		$("img").hover(function(){
				$(this).fadeTo(250, 0.4); 
			},function(){
				$(this).fadeTo(250, 1.0); 
				
		});
});
