$(document).ready(function(){						   	$("#navigation ul#nav li").hover(function(){		$(this).mouseover("#navigation ul#nav li").animate({ opacity: '0.5', left: "10"}, "fast");	},	function() {		$(this).mouseout("#navigation ul#nav li").animate({ opacity: '1', left: "0" }, "fast");	});    $('#subscribeForm').ajaxForm(function() {                 alert("Thank you for subscribing to the Team Sprint Cup newsletter!");             });             $('#volunteerForm').ajaxForm(function() {                 alert("Thank you for interest in becoming a volunteer with Team Sprint Cup. We will be in contact with you as the event draws closer.");             }); });