$(document).ready(function () {
//MASCON TOP NAV     
    $('#nav li').hover(
        function () {
            //show its submenu
			$(this).css("color","#fff").css("z-index","1000");
            $('ul', this).stop(true,true).slideDown(100);
 
        },
        function () {
            //hide its submenu
            $(this).css("color","#00c8f5");
			$('ul', this).stop(true,true).slideUp(100);
        }
    );
     
	 
	 
//footer	 
$('#footer').hover(
        function () {
            $(this).find("li a").css("color","#666");
        },
        function () {
            $(this).find("li a").css("color","#ccc");
        }
    );
     	 
	 
	 
	 


//ATW TOP NAV
    $('#atwTopNav li').hover(
        function () {
		    if($(this).parent().attr("class")!="dropNav"){
	            //show its submenu
				$(this).attr("class","atwTopNavHover");
	            $('ul', this).stop(true,true).slideDown(100);
            }
        
		
		},
        function () {
		    if($(this).parent().attr("class")!="dropNav"){
	            //hide its submenu
	            $(this).attr("class","atwTopNavRest");
				$('ul', this).stop(true,true).slideUp(100);
			}
        }
    );
});



