var switched = false;

$(function() {
	$("a", "li").mouseover(function() {
		if($(this).attr("class") != "active") {
			$(this).addClass("active");	
			
			$(this).next().removeClass();
			$(this).next().addClass("right-link");
			
			$(this).prev().removeClass();
			$(this).prev().addClass("left-link");
			
			switched = true;
		}
	});	
	
	$("a", "li").mouseout(function() {
		if(switched) {
			$(this).removeClass("active");	
		
			$(this).next().removeClass();
			$(this).next().addClass("link-empty");
			
			$(this).prev().removeClass();
			$(this).prev().addClass("link-empty");
			
			switched = false;
		}
	});
});
