$(document).ready(function(){
    
    $('body').click(function(){
        $('.clickable').removeClass('selected');
        $(".sub-nav").fadeOut("fast").removeClass("open");
    });
    
    $('.sub-nav').mouseleave    (function(){
        
        $(this).fadeOut("fast").removeClass("open");
            $(this).removeClass("selected");
            return false;
        
    });           
    
    $('.clickable').mouseover(function(){ 
       /* if($(this).next().hasClass("open"))
        
        {
            $(this).next().fadeOut("fast").removeClass("open");
            $(this).removeClass("selected");
            return false;
        }
        else
        {*/
            $('.clickable').removeClass('selected');
            $(".sub-nav").fadeOut("fast").removeClass("open");
            $(this).next().show().addClass("open");
            $(this).addClass("selected");
             return false;
        // }
        return false;
    });
});


