$(function(){
	$(".tab").hover(function(){
		$(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	})
	.click(function(){
		var link = $(this).find("div").text();
		window.location.href = "/" + link;
	});
})
