// JavaScript Document
$(document).ready(function() {
        var hide = false;
        $("#selectCategory").hover(function(){
            if (hide) clearTimeout(hide);
            $("#projectCategory").fadeIn();
            $("#selectCategory").addClass('on');
        }, function() {
            hide = setTimeout(function() {$("#projectCategory").fadeOut("slow");}, 250);
        });
        $("#projectCategory").hover(function(){
            if (hide) clearTimeout(hide);
        }, function() {
            hide = setTimeout(function() {$("#projectCategory").fadeOut("slow");}, 250);
            $("#selectCategory").removeClass('on');
        });
});


