﻿// Copyright (c) 2010 PageBean, Inc.  (http://www.pagebean.com)
// All rights reserved.

$(document).ready
(
    function() {
        $("#dropDownBrand > 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())));
			    }
			}
		);

        $("#dropDownBrand > li").mouseenter
		(
			function() {
			    $("#dropDownBrand > li > ul").stop(true, true); //clear the queue
			    $("#dropDownBrand > li > ul").slideUp(500); //slide up any open nav
			    $(this).children("ul").delay(150).slideDown(500); //slide down selected nav
			}
		);

        $("#dropDownBrand > li").mouseleave
		(
			function() {
                //alert("mouseleave");
			    $("#dropDownBrand > li > ul").stop(true, true);
			    $(this).children("ul").delay(300).slideUp(500);
			}
		);
    }
);
