$(document).ready(function() {
	$('#event-rotate').cycle({
		fx:     'fade',
		timeout: 6000,
		delay:  -2000
	});

	$("#left-nav ul#main").prepend('<li><a href="/" title="Home">Home</a></li>');
	
	$(".tooltip").tooltip('#tooltip-container',0,-50);

});

// JUMP MENUS
function jumpMenu(targ,selObj,restore){
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}
	function jumpMenuFAQ(targ,selObj,restore){
	  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	  if (restore) selObj.selectedIndex=0;
}

