
var $j = jQuery.noConflict();
var hover=false;

$j(document).ready(function(){
    
    

    
		$j('#siteMap').hover(
				function() { hover = true; },
				function () { hover = false; }
			);
	    
		

    
    $j('#siteMap').css('display', 'none');
    
    $j('.siteMap').hover(function(){
        $j('#siteMap').show('slow');
    });
    
    $j('#siteMap').mouseleave(function()
                            {
                                $j('#siteMap').hide('slow');
                            }
    );
    
    $j('.siteMap').mouseleave(function()
                            {
                                window.setTimeout(function() {
					if (!hover)
					{
						if (!hover) $j('#siteMap').hide('slow');
					}
				}, 500);

                            }
    );
    
    });


