jQuery(document).ready(function() {
	if (!jQuery.browser.msie && !jQuery.browser.opera) {
		window.setTimeout(function() { jQuery('#intro').fadeTo(3000, 0.4); }, 3000);
	
		jQuery("#intro").hover(function() {
			jQuery(this).stop();
			jQuery(this).fadeTo("fast", 1);
		},function() {
			jQuery(this).stop();
			jQuery(this).fadeTo("fast", 0.4);
		});
	};
});