﻿jQuery(document).ready(function() {
    jQuery(".grayMenu").hover(function() {
        jQuery(this).addClass("grayMHover");
    },
            function() {
                jQuery(this).removeClass("grayMHover");
            });

    jQuery(".redMenu").hover(function() {
        jQuery(this).addClass("redMenuHover");
    },
            function() {
                jQuery(this).removeClass("redMenuHover");
            });

    jQuery("#pnlMenu").css({ 'z-index': '900' });
    jQuery("#loadContainer").css({ 'display': 'none' });
    jQuery("#box").animate({ opacity: "0.2", top: "190", left: "0", height: "0" }, 1900)
	  .animate({ opacity: "0.3", top: "190", height: "70", width: "966" }, "fast")
	  .animate({ opacity: "0.4", left: "0", height: "70", width: "10" }, "fast")
	  .animate({ opacity: "0.5", top: "190", left: "0", width: "966", height: "70" }, "fast")
	  .slideUp()
	  .slideDown("slow", function() { jQuery("#box").addClass("boxBkg").show("slow") })
    return false;
});