

$(document).ready(function(){

	$("#menu a:not(.menact)").hover(function(){

		$(".menact").addClass("menout");

		$(this).addClass("menact");

	},function(){

		$(".menact").removeClass("menout");

		$(this).removeClass("menact");

	});

});









//////////////////////////////////// Fix IE6 Flickering



function fixIE6flicker(fix) {

	try {

		document.execCommand("BackgroundImageCache", false, fix);

	} catch(err) { }

}

fixIE6flicker(true);






