
function InvokeTimer(){
	//setTimeout('ShowPromotions()', 5000);	
}

function ShowPromotions(){
	
	var promoDivEl = document.getElementById("promotionsDiv");
	
	if (document.styleSheets[0].cssRules)
		crossrule=document.styleSheets[0].cssRules[0];
	else if (document.styleSheets[0].rules)
		crossrule=document.styleSheets[0].rules[0];
	
	//alert(crossrule);
	//promoDivEl.style. = "none";
			
}


var showMenu = function(ev) {
  //get the position of the placeholder element
  var offset = $("#menuSearchIcon").offset(); 
  var pos = $("#menuSearchIcon").position(); 
  var width = $("#menuSearchIcon").width();
  //show the menu directly over the placeholder
  var searchDivWidth = $("#searchDiv").width();
  
  //alert(offset.left);
  //alert(offset.left - searchDivWidth + width - 1);
  
  $("#searchDiv").css( {"padding":"1px 2px 2px 4px","white-space": "nowrap","left": (offset.left - searchDivWidth + width - 5) + "px", "top":width+offset.top + "px" } );
  
  if($("#searchDiv").css('display') == 'none'){
	  $("#searchDiv").show();
  }else{
	  $("#searchDiv").hide();
  }
};

var hideMenu = function(ev) {
	$("#searchDiv").hide();
};
