﻿/// <reference path="jquery-1.3.2-vsdoc.js" />

// main menu builder
var arrowimages = { down: ['downarrowclass', 'images/down.gif', 23], right: ['rightarrowclass', 'images/bullet_orange.gif'] }
var smenu = {
    animateduration: { over: 200, out: 400 }, //duration of slide in/ out animation, in milliseconds

    buildmenu: function(menuid, arrowsvar) {
        jQuery(document).ready(function($) {
            var $mainmenu = $("#" + menuid + ">ul")
            var $headers = $mainmenu.find("ul").parent()
            $headers.each(function(i) {
                var $curobj = $(this)
                var $subul = $(this).find('ul:eq(0)')
                this._dimensions = { w: this.offsetWidth, h: this.offsetHeight, subulw: $subul.outerWidth(), subulh: $subul.outerHeight() }
                this.istopheader = $curobj.parents("ul").length == 1 ? true : false
                $subul.css({ top: this.istopheader ? this._dimensions.h + "px" : 0 })
                if (!this.istopheader) {
                    $curobj.children("a:eq(0)").append(
				'<img src="' + (arrowsvar.right[1])
				+ '" class="' + (arrowsvar.right[0])
				+ '" style="border:0;" />'
			)
                }
                $curobj.hover(
				function(e) {
				    var $targetul = $(this).children("ul:eq(0)")
				    this._offsets = { left: $(this).offset().left, top: $(this).offset().top }
				    var menuleft = this.istopheader ? $mainmenu.outerWidth() : this._dimensions.w
				    menuleft = (this._offsets.left + menuleft + this._dimensions.subulw > $(window).width()) ? (this.istopheader ? -this._dimensions.subulw + this._dimensions.w : -this._dimensions.w) : menuleft
				    if ($targetul.queue().length <= 1) //if 1 or less queued animations, -2 below accounts for borders
				        $targetul.css({ left: menuleft + "px", top: 0, width: this._dimensions.subulw - 2 + 'px' }).slideDown(smenu.animateduration.over)
				},
				function(e) {
				    var $targetul = $(this).children("ul:eq(0)")
				    $targetul.slideUp(smenu.animateduration.out)
				}
			    ) 
            }) 
            $mainmenu.find("ul").css({ display: 'none', visibility: 'visible' })
        }) 
    }
}
//build nav menu
smenu.buildmenu("nav", arrowimages);

