$(document).ready(function(){
//For the quicknav fadein/out
	// Hide the menu initially
	$("#all-site-list").hide();
	
	// Toggle the menu on and off
	/*
	$("a#allsitesToggle").toggle(function(){
		$("#all-site-list").animate({ height: 'show', opacity: 'show' }, 'normal');
	},function(){
		$("#all-site-list").animate({ height: 'hide', opacity: 'hide' }, 'normal');
    });
    */
    $("a#allsitesToggle").click(function(){
        if($("#all-site-list:visible").length == 0){
            $("#all-site-list").animate({ height: 'show', opacity: 'show' }, 'normal');
        }
        else{
            $("#all-site-list").animate({ height: 'hide', opacity: 'hide' }, 'normal');
        }
    });
    $("a#allsitesToggle").blur(function(){
    	var timer;
    	var minTimerThreshold = 100;
		timer = setTimeout(function()                
        {                  
            $("#all-site-list").animate({ height: 'hide', opacity: 'hide' }, 'normal');                   
        }, minTimerThreshold);
    });
});
