
$(document).ready(function(){
	$("img.jhover").fadeTo(0,1.0);
	$("img.jhover").hover(function(){
		$(this).fadeTo(300,0.7);
		},
		function(){
			$(this).fadeTo(300,1.0);
		});
});


