function init333()
	{
		
		$('#dropmenudiv a img').hover(function() {
			var x = $(this).attr("id");
			
			$("#arrow-"+x).css({"backgroundImage":"url(/images/header/arrow.gif)","width":"20px","paddingLeft":"10px","backgroundRepeat":"no-repeat"});
		}, function() {
			var x = $(this).attr("id");
			$("#arrow-"+x).css({"paddingLeft":"0px","width":"1px","backgroundImage":"none"});
		});
		
	
		
	}
	
	var popupchef = 'closed';
	function popchef()
	{
		if (popupchef == 'open') 
		{
			$("#popupchef").fadeOut("normal",null);//css({"display":"none"});
			popupchef = 'closed';
		}
		else 
		{
			resetpopupchef()
			$("#popupchef").fadeIn("normal",null);
			popupchef = 'open';
		}
	}
	
	function resetpopupchef()
	{
		var w = Math.round(($(window).width() - 950) / 2) + 450;
		var h = $("#footer").position()['top'] - 115;
		$("#popupchef").width(w);
		$("#popupchef").height(h);
	}