$(document).ready(function(){

	$(document).pngFix();
	
	//$("#openingtimes").css("height", "240px");
	
	$("#openingtimes").hover(
		  function () {
			    $("div.schedule").show();
		  }, 
		  function () {
			    $("div.schedule").hide();
	      }
	);

	$("div.schedule").hover(
			  function () {
				  $(this).show();
			  }, 
			  function () {
				  $(this).hide();
		      }
		);
	
});
