$(document).ready(function(){
	// *****  main nav drop down menus
		$('ul.sf-menu').superfish({
			delay:       500,                            // one second delay on mouseout
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
			speed:       'fast',                          // faster animation speed
			autoArrows:  false,                           // disable generation of arrow mark-up
			dropShadows: true                            // disable drop shadows
		});

	// *****  slides the footer open on rollover
	var fh = $("#footer").height();
	$("#footer").height(25);

	$("#sitemap").mouseenter(function() {
		$("#footer").animate({height:fh});
	});

    $("#logo").click(function(){
    	window.location=$(this).find("a").attr("href");
       return false;
    });

     $("#logo").hover(
        function(){
     	   $(this).css("cursor", "pointer");
         },null);


});
