// Dropdown Menus ala Suckerfish.
$(document).ready(function() {
		// hides the slickbox as soon as the DOM is ready
		// (a little sooner than page load)
		$('#slickbox').show();
		// shows the slickbox on clicking the noted link  
		$('a#slick-show').click(function() {
		$('#slickbox').slideUp();
		return false;
		});
		// hides the slickbox on clicking the noted link  
		$('a#slick-hide').click(function() {
		$('#slickbox').slideDown();
		return false;
		});
  		// toggles the slickbox on clicking the noted link  
        $('a#slick-toggle').click(function() {
		$('#slickbox').slideToggle(500);
		if($.cookie('mmweathermenu') == null || $.cookie('mmweathermenu') == 'show') { 
			$.cookie('mmweathermenu','hide',{expires: 90});
		}else{
			$.cookie('mmweathermenu','show',{expires: 90});
		}
		return false;
  });
});
