$(document).ready(function(){
	latestShows();
	tabs_box_index(); 
});

// 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();
		};
      });
}

function tabs_box_index()	{
	$(function() {
		$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);  
		$("#featured").hover(  
		function() {  
		$("#featured").tabs("rotate",0,true);  
		},  
		function() {  
		$("#featured").tabs("rotate",5000,true);  
		}  
		);
	});
}