$(document).ready(function(){
	
	$("#topMenuListLvl1 > li").each(function(i,el) {
		var menuID = $(this).get(0).id;
		var menuHref = $(".topMenuItemLvl1 a",this).attr('href');
		var ddName = "dd"+menuID;
		var ddID = "#"+ddName;
		if($("ul",this).html()){
			$("#dropdowns").append(
					$("<div />").attr('id',ddName).addClass("dropdown").append(
									$("<ul />").append($("ul",this).html())
							
						)
			);
		}
	});
	if($(".leftMenuSelected").parent().next().attr('id') != "topMenuListLvl2"){
		$("#pos1").addClass("noMargin");
	}
	

	
	var timerArray = new Array();
	$("#topMenuListLvl1 > li").each(function(i,el) {
		
		var menuID = $(this).get(0).id;
		var ddID = "#dd"+menuID;
		$(this).bind("mouseenter",function(){
			$(ddID).position({
				  my: "right top",
				  offset: "0 25",
				  at: "right top",
				  of: "#"+menuID
				});
			$("#"+menuID).addClass("menuItemHover");
		    $(ddID).show();
		    window.clearTimeout(timerArray[ddID]);
		}).bind("mouseleave", function() {
			timerArray[ddID] = setTimeout('$("'+ddID+'").hide();$("#'+menuID+'").removeClass("menuItemHover");', 100);
		});
		$(ddID).bind("mouseenter", function() {
			window.clearTimeout(timerArray[ddID]);
		}).bind("mouseleave", function() {
			timerArray[ddID] = setTimeout('$("'+ddID+'").hide();', 0);
			$("#"+menuID).removeClass("menuItemHover");
			$(ddID).hide();
		});
		
	});

	// LANGUAGE DROPDOWN
	
	$("#languageBox").position({
			  my: "left bottom",
			  at: "left bottom",
			  of: "#activeLanguage",
			  offset: "-45 5"
	});
	
	$("#activeLanguage").click(function() {
		$("#languageBox").toggle();

	});

});
