 $(document).ready(function(){
	$("img").fadeTo("fast", .8);					
	$("img").hover(function(){
                    $(this).fadeTo("fast", 1);
                },function(){
                    $(this).fadeTo("fast", .8);
                });

  });
