//JQUERY
$(document).ready(function() {			 
	$("#msg").fadeIn("slow");
	
	$("li.dropdown").mouseover(function() {
		$("ul",this).addClass("hovering");
		//(this).find("ul") -- could also use this way
		$("a",this).addClass("dropped");
	});
	
	$("li.dropdown").mouseout(function() {
		$("ul",this).removeClass("hovering");
		$("a",this).removeClass("dropped");
	});

	/*pngfix();*/
});// document ready

document.execCommand("BackgroundImageCache",false,true);
