jQuery(function() {
	jQuery("a[class='menuLink']").parent().attr("href", jQuery(this).href);
	jQuery("ul[id$='Sub']").hide();

	jQuery("li[id$='Menu']").hover(function() {
		$aPosition = jQuery(this).position();
		jQuery("ul[id$='Sub']").animate({
			height: "hide",
			opacity: "hide",
			speed: "fast"
		});
		
		jQuery("ul[id='" + this.id + "Sub']").animate({
			height: "show",
			opacity: "show",
			speed: "slow"
		}).css({
			position: "absolute",
			top: $aPosition.top + "px",
			left: $aPosition.left + 15 + "px",
			zIndex: 9000,
			float: "left",
			clear: "both"
		});
	}, function() {
		jQuery("ul[id='" + this.id + "Sub']").hover(function() {
			jQuery(this).show();
		}, function() {
			jQuery("ul[id$='Sub']").animate({
				height: "hide",
				opacity: "hide",
				speed: "fast"
			});
		});
	});
});