﻿$(document).ready(function() {

    var currentMenu = "";

    //hide sub nav on page load
    //$('#topNav ul li ul.subNav').slideUp();

    $(function() {

        // Hide sub-navbar for all subnavs with 0 items
        $('#topNav>ul>li').each(function(i) {
            var ct = $(this).find('li').size();
            if ((i > 0) && (ct > 0)) {
                //$(this).find("ul").css("left", "-2000px");
                $(this).find("ul.subNav").css("display", "none");
            }
        });

        $('#topNav>ul>li').bind('hover', { speed: 75, delay: 300 }, function() {
            if (currentMenu != $(this).attr('class')) {
                currentMenu = $(this).attr('class');
                $('#topNav ul li ul.subNav:visible').slideUp('fast');
                $(this).find("ul.subNav").slideDown('normal');
            } else {
                $(this).find("ul.subNav:hidden").slideDown('normal');
            }
            return;
        });

        //$('#contentContainer').bind('hover', { speed: 300, delay: 1400 }, function() {
        //$("ul.subNav").slideUp('normal');
        //});

        var cur_url = window.location;

        if (window.location.toString().indexOf("home_boy.aspx") != -1) {
            $('.home').removeClass('home').addClass('home_b');
        }
        if (window.location.toString().indexOf("home_girl.aspx") != -1) {
            $('.home').removeClass('home').addClass('home_b');
        }

        if ((window.location.toString().indexOf("-bettnaessen") != -1) || (window.location.toString().indexOf("bettnaessen-") != -1)) {
            $('.about').find("ul.subNav").css("display", "block");
            currentMenu = "about";
        }
             if (window.location.toString().indexOf("-bettnaessen-") != -1) {
            $('.manage').find("ul.subNav").css("display", "block");
            currentMenu = "manage";
        }
        else
            if (window.location.toString().indexOf("was-tun.aspx") != -1) {
            $('.manage').find("ul.subNav").css("display", "block");
            currentMenu = "manage";
        }
        else
            if (window.location.toString().indexOf("tipps-fur-die-Eltern.aspx") != -1) {
            $('.manage').find("ul.subNav").css("display", "block");
            currentMenu = "manage";
        }
        else
            if (window.location.toString().indexOf("copingTools.aspx") != -1) {
            $('.manage').find("ul.subNav").css("display", "block");
            currentMenu = "manage";
        }
        else
            if (window.location.toString().indexOf("weiterfuhrende-hinweise.aspx") != -1) {
            $('.manage').find("ul.subNav").css("display", "block");
            currentMenu = "manage";
        }
        else
            if (window.location.toString().indexOf("therapien.aspx") != -1) {
            $('.manage').find("ul.subNav").css("display", "block");
            currentMenu = "manage";
        }


        //ready
        if (window.location.toString().indexOf("Bettfertig.aspx") != -1) {
            $('.ready').find("ul.subNav").css("display", "block");
            currentMenu = "ready";
        }
        else
        if (window.location.toString().indexOf("rituale.aspx") != -1) {
            $('.ready').find("ul.subNav").css("display", "block");
            currentMenu = "ready";
        }
        else
        if (window.location.toString().indexOf("spiele-und-geschichten.aspx") != -1) {
            $('.ready').find("ul.subNav").css("display", "block");
            currentMenu = "ready";
        }
        else
        if (window.location.toString().indexOf("Books.aspx") != -1) {
            $('.ready').find("ul.subNav").css("display", "block");
            currentMenu = "ready";
        }
        if (window.location.toString().indexOf("Suchposter.aspx") != -1) {
            $('.ready').find("ul.subNav").css("display", "block");
            currentMenu = "ready";
        }


        //produxt
        if (window.location.toString().indexOf("Produkte.aspx") != -1) {
            $('.products').find("ul.subNav").css("display", "block");
            currentMenu = "products";
        }
        else
        if (window.location.toString().indexOf("Einleitung.aspx") != -1) {
            $('.products').find("ul.subNav").css("display", "block");
            currentMenu = "products";
        }
        else
        if (window.location.toString().indexOf("taegliche-routine.aspx") != -1) {
            $('.products').find("ul.subNav").css("display", "block");
            currentMenu = "products";
        }
        else
        if (window.location.toString().indexOf("Ihre-Fragen.aspx") != -1) {
            $('.products').find("ul.subNav").css("display", "block");
            currentMenu = "products";
        }
        else
        if (window.location.toString().indexOf("Verfugbarkeit.aspx") != -1) {
            $('.products').find("ul.subNav").css("display", "block");
            currentMenu = "products";
        }
        else
        if (window.location.toString().indexOf("promotionBook.aspx") != -1) {
            $('.products').find("ul.subNav").css("display", "block");
            currentMenu = "products";
        }


        //        if (cur_url.contains("home_boy.aspx") ) {
        //            //$("body").attr("class","pm-best-sellers");
        //            $('.home').removeClass('home').addClass('home_b');
        //        }else if (cur_url.contains("home_girl.aspx") ) {
        //            //$("body").attr("class","pm-best-sellers");
        //            $('.home').removeClass('home').addClass('home_b');
        //        }
        //        $('.home').removeClass('home').addClass('home_b');
        //$('#contentContainer').bind('hover', { speed: 300, delay: 1400 }, function() {
        //$("ul.subNav").slideUp('normal');
        //});

    });


});
