// JavaScript Document
$(document).ready( function(){
    
    $('.menu ul li ul').css('display','none');

    // Nav
    $('.menu > ul > li').hover(
        function(){

            if( $(this).hasClass('blue') )
                $(this).children(':first').css('background','#2f7098');
            else
                $(this).children(':first').css('background','#0f3c58');

            if( $(this).has('ul') ){
                $(this).children('ul').fadeIn(500);
            }
        
        },function(){

            if( $(this).hasClass('blue') )
                $(this).children(':first').css('background','#0f3c58');
            else
                $(this).children(':first').css('background','#2f7098');

            if( $(this).has('ul') ){
                $(this).children('ul').css('display','none');
            }
        }
    );
});
