﻿$(function() { 
    // Drop down menu
    $("#navigate ul li.lvlM").hover(function(){
        $(this).addClass("active");
        $(this).children("ul").stop(true, true).slideDown("fast");
    }, function(){
        $(this).removeClass("active");
        $(this).children("ul").stop(true, true).slideUp("fast");
    });
    $("#navigate ul li.lvl2").hover(function(){
        $(this).addClass("active");
        $(this).children("ul").stop(true, true).show();
    }, function(){
        $(this).removeClass("active");
        $(this).children("ul").stop(true, true).hide();
    });
    
    // DD Bump
    $(".subNav li a").hover(function () {
        $(this).stop().addClass("bump");
        $(this).css({ width: $(this).width() - 1} );
        $(this).parent('.lvlM').addClass("active");
        }, 
        function () {
        $(this).stop().removeClass("bump");
        $(this).css({ width: $(this).width() + 1} );
        }
    );        

    // FAQ Toggle
    $(".faqQ").hover(function () {
        $(this).stop().addClass("faqHover");
        }, 
        function () {
        $(this).stop().removeClass("faqHover");
        }
    );
    $(".faqQ").click(function () { 
        $(this).next(".faqA").slideToggle(); 
        $(this).toggleClass("faqExpand");

    });    

    // print button
    $(".btnPrint").click(function() { window.print(); return false; });
});

// mailto function
function mailto(domain,user) {
    document.location.href = "mailto:" + user + "@" + domain;
};
