 jQuery(document).ready(function($) {
		$("#todaysdate").mouseover(
			function() {
				$(".bhfp_weather_item_other").show();
			}
		).mouseout(
			function() {
				$(".bhfp_weather_item_other").hide();
			}
		);
});
