$.swfobject.registerObject("logo", "8.0.0");
$.swfobject.registerObject("navigation", "8.0.0");

$(document).ready(function() {
	$("#intro").css("opacity", 0.99999);

	$("table#highlight tr").mouseover(function() {
		$(this).addClass("hoverHighlighted");
	}).mouseout(function() {
		$(this).removeClass("hoverHighlighted");
	});
});

$(window).bind("load", function() {
	if (!$.browser.msie && !$.browser.opera) {
		window.setTimeout(function() { $('#intro').fadeTo(3000, 0.5); }, 3000);
	
		$("#intro").hover(function() {
			$(this).fadeTo("fast", 0.99999);
		},function() {
			$(this).fadeTo("fast", 0.5);
		});
	};
});