// hover fade
$(document).ready(
function(){
	$("h1 img, ul#gNav img, img.hoverFade").hover(function(){
		$(this).fadeTo("normal", 0);
	},function(){
		$(this).fadeTo("normal", 1.0);
	});
});

