$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
 if ($.browser.msie && $.browser.version < 9){
	
	return;
	}             
	$("#img_logo").fadeTo(500, 0.0);
	$("#img_logo").hover(function(){
		$("#img_logo").fadeTo(500, 1.0); 
	},function(){
		$("#img_logo").fadeTo(500, 0.0); 
	});
});
