﻿$(document).ready(function() {

    // DROPDOWN MENU SLIDER SETUP
    $(".headerDropdownMenu").mousemove(function() {
        //Following events are applied to the subnav itself (moving subnav up and down)
        if ($(this).find("ul.subnav").css('display') == 'none') {
            $(this).find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
        }

        $(this).mouseleave(function() {
            $(this).find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
        });
    });

    // BIGGER LINK SETUP JS

    $('#leftMenu ul li').biggerlink();
    $('.headerDropdownMenu ul li').biggerlink();
    $('#requestTesting').biggerlink({ hoverclass: 'requestTesting-hover', biggerclass: 'requestTesting-bigger' });

});
