$(function(){
		
		$('#highlight').stop().css({"left" : "241px"});		
		
		$('.home').hover(function(){
			$('#highlight').stop().animate({"left" : "0px"}, 500);
		}, function() {
			$('#highlight').stop().animate({"left" : "241px"}, 200);
		});
		
		$('.classes').hover(function(){
			$('#highlight').stop().animate({"left" : "121px"}, 500);
		}, function() {
			$('#highlight').stop().animate({"left" : "241px"}, 200);
		});

		$('.gall').hover(function(){
			$('#highlight').stop().animate({"left" : "241px"}, 500);
		}, function() {
			$('#highlight').stop().animate({"left" : "241px"}, 200);
		});

		$('.guides').hover(function(){
			$('#highlight').stop().animate({"left" : "361px"}, 500);
		}, function() {
			$('#highlight').stop().animate({"left" : "241px"}, 200);
		});

		$('.links').hover(function(){
			$('#highlight').stop().animate({"left" : "481px"}, 500);
		}, function() {
			$('#highlight').stop().animate({"left" : "241px"}, 200);
		});

	});
