//JQUERY
$(document).ready(function() {			 
	$("#msg").fadeIn("slow");
	
	function addDropdown(){
        $("ul",this).addClass("hovering");
		//(this).find("ul") -- could also use this way
		$("a",this).addClass("dropped");
        }

      function removeDropdown(){
        $("ul",this).removeClass("hovering");
		$("a",this).removeClass("dropped");
        }

    /*var dropdownConfig = {
         interval: 50,
         sensitivity: 4,
         over: addDropdown,
         timeout: 500,
         out: removeDropdown
    };
    $("li.dropdown").hoverIntent(dropdownConfig)*/
	
	$("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);
