jQuery(document).ready(function(){
    //SubMenu color change
    jQuery('#navWrap ul li ul li').hover(function(){
        jQuery(this).stop().animate({
            backgroundColor: '#ffffff'
        },{
            queue:false,
            duration:250
        });
        jQuery('> a', this).stop().animate({
            color: '#424242'
        },{
            queue:false,
            duration:250
        });
    }, function() {
        jQuery(this).stop().animate({
            backgroundColor: '#424242'
        },{
            queue:false,
            duration:250
        });
        jQuery('> a', this).stop().animate({
            color: '#ffffff'
        },{
            queue:false,
            duration:250
        });
    });

});
