﻿function openSearcBox(evt)
{   var sb=document.getElementById('searchBox').wrapper;
	sb.style.top = (evt.clientY + 5) + 'px';
	sb.style.left = (evt.clientX - 10) + 'px';
	$(sb).fadeIn('fast');
}



function openSiteMap(evt)
{   var sm=document.getElementById('siteMapDiv').wrapper;
	sm.style.top = (evt.clientY + 5) + 'px';
	sm.style.left = (evt.clientX - 50) + 'px';
	$(sm).fadeIn('fast');
}



function hideSiteMap()
{
	$(document.getElementById('siteMapDiv').wrapper).fadeOut('fast');
}

 


function hideSearcBox()
{
	$(document.getElementById('searchBox').wrapper).fadeOut('fast');
}



$(document).ready(function()
{
	roundCorners(document.getElementById('siteMapDiv'),12);
	roundCorners(document.getElementById('searchBox'),12);
//	roundCorners(document.getElementById('searchDiv'),6,'bottom');
	roundCorners(document.getElementById('cmsPathMenu'),6,'bottom');
    
      $(document.getElementById('searchBox').wrapper).hover(function() {
         $(document.getElementById('searchBox').wrapper).fadeIn('fast');
      }, function() {
         setTimeout("hideSearcBox()", 500);
      });


      $(document.getElementById('siteMapDiv').wrapper).hover(function() {
         $(document.getElementById('siteMapDiv').wrapper).fadeIn('fast');
      }, function() {
         setTimeout("hideSiteMap()", 500);
      });

});