﻿//MENU DROPDOWN
var menu_animationspeed = 200;

jQuery(document).ready(function() {

    //MENU
    var CurrentPath = jQuery(".CurrentUmbracoPath").attr("value"); //alert('CurrentPath = ' + CurrentPath);
    jQuery(".menu li.firstlevel").hover(
            function() {
                jQuery(this).children(".dropdown").stop().animate({ height: jQuery(this).children(".dropdown").children("ul").outerHeight(true) }, menu_animationspeed);


            },
            function() {
                jQuery(this).children(".dropdown").stop().animate({ height: 0 }, menu_animationspeed);
                var MenuLinkName = jQuery(this).children("a").attr("Class");
                if (CurrentPath.indexOf(MenuLinkName) == -1) {
 
                }
            }
        );

    //Testing
    //var Test = jQuery("#innerBordered").height();
    //alert(Test);
});
