﻿// Copyright (c) 2010 PageBean, Inc.  (http://www.pagebean.com)
// All rights reserved.

$(document).ready
(
    function()
    {
		$("#dropDownNav > li").each
		(
			function()
			{
				if ((($(this).offset()).left + $(this).children("ul").outerWidth()) > Math.round($("#siteContainer").width() + ($(document).width() - $("#siteContainer").width()) / 2))
				{
					$(this).children("ul").eq(0).css("left", (Math.round($("#siteContainer").width() + ($(document).width() - $("#siteContainer").width()) / 2) - (($(this).offset()).left + $(this).children("ul").outerWidth())));
				}
			}
		);
		
		$("#dropDownNav > li").mouseenter
		(
			function()
			{
				$("#dropDownNav > li > ul").stop(true, true); //clear the queue
				$("#dropDownNav > li > ul").slideUp(500); //slide up any open nav
				$(this).children("ul").delay(150).slideDown(500); //slide down selected nav
			}
		);
		
		 $("#dropDownNav > li").mouseleave
		(
			function()
			{
				$("#dropDownNav > li > ul").stop(true, true);
				$(this).children("ul").delay(300).slideUp(500);
			}
		);
    }
);
