// Change the tab backgrounds
function swap_tabs(){
var url = document.URL;	
var home = "on";
var news = "off";
var casinos = "off";
var lifeevents = "off";
var sports = "off";
var world = "off";
var lifestyles = "off";
var opinions = "off";
var entertainment = "off";

if (url.match("news")){news = "on";home = "off";}
else if (url.match("casinos")){casinos = "on";home = "off";}
else if (url.match("lifeevents")){life_events = "on";home = "off";}
else if (url.match("sports")){sports = "on";home = "off";}
else if (url.match("world")){world = "on";home = "off";}
else if (url.match("lifestyles")){lifestyles = "on";home = "off";}
else if (url.match("opinions")){opinions = "on";home = "off";}
else if (url.match("entertainment")){entertainment = "on";home = "off";}

var tab='';
tab+='<ul><li class="'+home+'" style="margin-left:0px"><a href="http:\/\/www.norwichbulletin.com">Home<\/a><\/li>';
tab+='<li class="'+news+'"><a href="http:\/\/www.norwichbulletin.com\/news">News<\/a><\/li>';
tab+='<li class="'+casinos+'"><a href="http:\/\/www.norwichbulletin.com\/casinos">Casinos<\/a><\/li>';
tab+='<li class="'+lifeevents+'"><a href="http:\/\/www.legacy.com\/norwichbulletin\/Obituaries.asp">Life Events<\/a><\/li>';
tab+='<li class="'+sports+'"><a href="http:\/\/www.norwichbulletin.com\/sports">Sports<\/a><\/li>';
tab+='<li class="'+world+'"><a href="http:\/\/www.norwichbulletin.com\/world">Nation\/World<\/a><\/li>';
tab+='<li class="'+lifestyles+'"><a href="http:\/\/www.norwichbulletin.com\/lifestyles">Lifestyles<\/a><\/li>';
tab+='<li class="'+opinions+'"><a href="http:\/\/www.norwichbulletin.com\/opinions">Opinions<\/a><\/li>';
tab+='<li class="'+entertainment+'" style="margin-left:2px"><a href="http:\/\/www.norwichbulletin.com\/entertainment">Entertainment<\/a><\/li>';
tab+='<\/ul>';
document.write(tab);
}