/* This is here because SOMEONE didn't use default bv layout on this foldah */

$(window).load(function () {
	$("div.vertDropDown").each(function () {
		var dropId = $(this).find("a").attr("rel");
		var iMaLink = $(this).find("a");
		$(this).hover(
			function() {
				$("#"+dropId).css({"display":"block","left":iMaLink.position().left+"px","top":iMaLink.position().top+iMaLink.height()+"px"});
			},
			function () {
				$("#"+dropId).css({"display":"none"});
			});
	});
	$("div.horizDropDown").each(function () {
		var dropId = $(this).find("a").attr("rel");
		var iMaLink = $(this).find("a");
		$(this).hover(
			function() {
				$("#"+dropId).css({"display":"block","left":iMaLink.position().left+iMaLink.width()+"px","top":iMaLink.position().top+"px"});
			},
			function () {
				$("#"+dropId).css({"display":"none"});
			});
	});
});
