$(document).ready(function(){
	$("div.locationPanel div.backPanel ul").hover(
		function(){
			$(this).addClass("selected");
		},
		function(){
			$(this).removeClass("selected");
		}	
	)
	.click(
		function(){
			window.location.href = $(this).attr("forward");
		}
	)
	/*
	$("div.locationPanel div.pathPanel li").hover(
		function(){
			$(this).addClass("over");
		},
		function(){
			$(this).removeClass("over");
		}	
	)	
	.click(
		function(){
			if($(this).attr("forward")){
				window.location.href = $(this).attr("forward");
			}
		}
	)
	*/
});
