$(document).ready(function(){
	$("#top-navigation").find("ul li:first").css("border-left", "none");
	$("#top-navigation ul li").click(function(){
		var href = $(this).find("a").attr("href");
		window.location.href = href;
	});
});
