$(document).ready(
function(){
	$("#hb_top_nav li").hover(function(){
		$(this).addClass("over");
	}, function(){
		$(this).removeClass("over");
	}).click(function() {
		var ref=$(this).find("a").attr("href");
		document.location.href=ref;
	});
});
