$(function(){
	jQuery.ifixpng('/i/s.gif');
	jQuery('img, .bgPng').ifixpng();
	jQuery('td, .bgPng').ifixpng();
	jQuery('div, .bgPng').ifixpng();
	jQuery('a, .bgPng').ifixpng();
	jQuery('li, .bgPng').ifixpng();
	jQuery('body, .bgPng').ifixpng();

	$(".menu-new .menuhover").mouseenter(function(){
		$active=$(this).parent().find(".active");
		$(".active").stop(true, true).slideUp();
	
		if($(this).outerWidth()+50>=$active.outerWidth())
		$active.css({"width":$(this).outerWidth()+20+"px"});
	
		$active.stop(true, true).slideDown("fast").find(".item").css({"z-index":10});
	})
	
	$(".menu-new .active").mouseleave(function(){
		$(this).parent().find(".active").stop(true, true).slideUp("fast").find(".item").css({"z-index":15});
	});
});