// *** Drop Downs ***
    $(function () {
        //When the mouse enters an anchor with class dropdown 
        $('.dropdown').mouseenter(function () {

            //Anything with the class sublinks gets hidden
            $('.sublinks').stop(false, true).slideUp();

            //Get the Object that is the next in line with the chosen dropdown class 
            var submenu = $(this).parent().next();

            //do this with it
            submenu.css({
                position: 'absolute',
                top: $(this).offset().top + $(this).height() + 17 + 'px',
                left: $(this).offset().left + 0 + 'px',

                zIndex: 1000

            });
            //animate the slide down
            submenu.stop(true, true).slideDown(250);

            submenu.mouseenter(function () {
                submenu.stop(true, true).slideDown(250);
            });

            //reverse the slidedown on mouse leave
            submenu.mouseleave(function () {
                $(this).slideUp();
            });
        });

        //When the mouse enters an anchor with class dropdown 
        $('.dropdown').mouseleave(function () {

            //Anything with the class sublinks gets hidden
            $('.sublinks').stop(false, true).slideUp();
        });

    });

//$(document).ready(function(){
//	setTimeout('brochureRiseUp()',4000);
//});

//function brochureRiseUp(){
//	$('#brochureRequest').animate({ top:70 },2000);
//}

