$(document).ready(function(){

	$("#forecastMapLinks").hide();
	
	$("li#navweather a").click(function () {
		// on hover
		$("#forecastMapLinks").slideToggle('fast');
		return false;
  });
  
});
