﻿/// <reference path="jQueryIntellisense.js"/>
/// <reference path="/Standard/Core/Javascript/Relational.Standard.Core.js"/>

Type.registerNamespace('Relational.Standard.Core');
Type.registerNamespace('Website.Behavior');

$(function() {

    // Menus
    $('ul#Menu li').hover(
        function(e) {
            $('div.DropDownMenu', $(this)).stop(true, true).slideDown('fast')
            $(this).addClass("Hover");
        },
        function(e) {
            $('div.DropDownMenu', $(this)).stop(true, true).slideUp('fast')
            $(this).removeClass("Hover");
        }
    );

});

