jQuery(document).ready(function () {
	jQuery("#navabout").hover(function(){
        jQuery("#subabout").show();
    }, function(){	
    	var t = setTimeout(function() {
    		jQuery("#subabout").hide();
        }, 200);
    	jQuery("#subabout").data('timeout', t);
    });
	jQuery("#subabout").hover(function(){
		clearTimeout(jQuery("#subabout").data('timeout'));
	}, function(){	
    	jQuery("#subabout").hide();
    });
	
	jQuery("#navinside").hover(function(){
        jQuery("#subinside").show();
    }, function(){	
    	var t = setTimeout(function() {
    		jQuery("#subinside").hide();
        }, 200);
    	jQuery("#subinside").data('timeout', t);
    });
	jQuery("#subinside").hover(function(){
		clearTimeout(jQuery("#subinside").data('timeout'));
	}, function(){	
    	jQuery("#subinside").hide();
    });
});
	
	
