/*$("#main-top > a").each(function(){
	var target_ = "#"+$(this).attr("linkD")+ " > ul";
	$(this).mouseover(function(){
		var offset = $(this).offset();
		var showMenu= function(){
			$("#menu-top").html("<ul>"+$(target_).html()+"</ul>");
			$("#menu-top").css("left",offset.left);
			$("#menu-top").css("top",offset.top+16);
			$("#menu-top").show("slow");
		};
		
		if($("#menu-top").is(":visible")){
			$("#menu-top").hide("fast", function(){showMenu();});
		}else {showMenu()}
		
	});
	
	$(this).click(function(){return false;});
});
$(document).click(function(e){
	thisObj = e.target?e.target:event.srcElement;
	do{
		if(thisObj.id == "menu-top" ) return;
		if(thisObj.tagName == "BODY"){$("#menu-top").hide(); return;};
		thisObj = thisObj.parentNode;
	}while(thisObj.parentNode);
});*/
