// JavaScript Document

$("document").ready(function() {			
	$("#btnSearchDrop a").click(function(){		//Search Button (magnifying glass)
		var pos = $("#btnSearchDrop a").offset();  
		var width = $("#btnSearchDrop a").width();
		//show the menu directly over the placeholder
		$("#toolTip_search").css( { "left": (pos.left - 8) + "px", "top":pos.top + 20 + "px" } );
		$("#toolTip_search").show();
		$("#clickOffMenu").show();
		$('#btnSearchDrop a').addClass('glow');
		$("#SearchForm input.Textbox").focus();
	});
	
	$("#btnMyAccountDrop").click(function(){		//My Account Button
		var pos = $("#btnMyAccountDrop").offset();  
		var width = $("#btnMyAccountDrop").width();
		//show the menu directly over the placeholder
		$("#dropMenu_myAccount").css( { "left": (pos.left - 87 + width / 2) + "px", "top":pos.top + 20 + "px" } );
		$("#dropMenu_myAccount").show();
		$("#clickOffMenu").show();
		$('#btnMyAccountDrop').addClass('glow');
	});


	$("#clickOffMenu").click(function(){
		$("#toolTip_search").hide();
		$("#dropMenu_myAccount").hide();
		$("#clickOffMenu").hide();
		$('#btnSearchDrop a').removeClass('glow');
		$('#btnMyAccountDrop').removeClass('glow');
	});
	
	$(window).resize(function() {
		var pos = $("#btnSearchDrop a").offset();  
		var width = $("#btnSearchDrop a").width();
		$("#toolTip_search").css( { "left": (pos.left - 8) + "px", "top":pos.top + 20 + "px" } );
		var pos = $("#btnMyAccountDrop").offset();  
		var width = $("#btnMyAccountDrop").width();
		$("#dropMenu_myAccount").css( { "left": (pos.left - 87 + width / 2) + "px", "top":pos.top + 20 + "px" } );
	});
});

