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

