
$(document).ready(function(){
	latestShows(); 
//	latestShowsMain(); 
});

// expand and contract
function latestShows() {
	$("#water_probs_dl dt").mouseover(
	 function () {
		if ($(this).next().css("display") == "none") {
		$("dd").slideUp("fast"); // do I need ID here ????????????
        $(this).next().show();
		};
      });
}

// change html to h2 and p - not using this function
function latestShowsMain() {
	$("#water_probs_main dd:first").css("display", "block");
	$("#water_probs_dl_main dt").mouseover(
	 function () {
		if ($(this).next().css("display") == "none") {
		$("dd").slideUp("fast");
        $(this).next().slideDown("fast");
		};
      });
}
