/// <summary>The SitePathMenu adds the javascript logic for creating our breadcrumb dropdown menu.


$(document).ready(function() {
    
    //Toggle the over / out state of the breadcrumb dropdowns.
    $("ul.menu.sitepath > li.item[class != 'item home']").hover(
      function () 
      {
        if (jQuery.browser.msie && (parseInt(jQuery.browser.version) < 7)) 
		{
			runIE6ZIndexFix(this, "SITE_PATH_MENU");
		}
		
        $(this).children("ul.menu").show();
      },
      function () 
      {
        $(this).children("ul.menu").hide();
        
		//if (jQuery.browser.msie && (parseInt(jQuery.browser.version) < 7)) 
		//{
			//closeIE6ZIndexFix(this, "SITE_PATH_MENU");
		//}
      }
    );
}); 

