$(document).ready(function(){
	$("div.top-menu table tr td:last-child").css("background","none");
	var activ = $("div.top-menu table tr td.activ");
	activ.removeAttr("style");
	activ.prev("td").css("background","none");
	t = $("#content table").length;
	for (i=0;i<t;i++){
		if ($("#content table").eq(i).attr("border") !== "0"){
			$("#content table").eq(i).addClass("border_");
		}
	}
	
});
