	$(document).ready(function(){
	
		$("#menu li a").hover(
			function() { 
				$(this).animate({ color: "#0099FF"}, 500);
				},
			function() { 
				$(this).animate({ color: "#666666"}, 1000);
			});

		$(".call-to-action-button a").hover(
		function() {
			if( $(this).parent("div").attr("id")=="start"){
				$(this).parent("#start").animate({ backgroundColor: "#66FF66"}, 500); 
			}
			else {
			$(this).parent("div").animate({ backgroundColor: "#FFFF66"}, 500); }
			},
			function() {
			$(this).parent("div").animate({ backgroundColor: "#699FD9"}, 1000); 
			});	
		
		$("#bottom-nav li").prepend('  |  ');

		$("div.login-panel-button").replaceClass({event_type:"click", old_class:"up", new_class:"down"});

	    $("div.login-panel-button").click(function () {
	       $("div#login-panel").slideToggle("slow");	
	  
        });
	 });