<!-- 
//***** Name this script "index.html" 
var requestedDomainObj = document.URL; 
var requestedDomain = requestedDomainObj.toLowerCase(); 
var sendToLocation = ""; 
var gotMatch = false; 
var siteToCheckFor = ""; 
siteToCheckFor = /fightfibrocenter.com/;
if ((siteToCheckFor.test(requestedDomain)) && (gotMatch == false)) { 
    sendToLocation = "http://www.fightfibrocenter.com/fibromyalgia-help/index.htm" ; 
    gotMatch = true; 
} 
siteToCheckFor = /www.fightfibrocenter.com/;
if ((siteToCheckFor.test(requestedDomain)) && (gotMatch == false)) { 
    sendToLocation = "http://www.fightfibrocenter.com/fibromyalgia-help/index.htm" ; 
    gotMatch = true; 
} 
siteToCheckFor = /fibroreliefonline.com/;
if ((siteToCheckFor.test(requestedDomain)) && (gotMatch == false)) { 
    sendToLocation = "http://www.fibroreliefonline.com/fibromyalgia-help/index.htm" ; 
    gotMatch = true; 
} 
siteToCheckFor = /www.fibroreliefonline.com/;
if ((siteToCheckFor.test(requestedDomain)) && (gotMatch == false)) { 
    sendToLocation = "http://www.fibroreliefonline.com/fibromyalgia-help/index.htm" ; 
    gotMatch = true; 
} 
siteToCheckFor = /fibrohelpcenter.com/;
if ((siteToCheckFor.test(requestedDomain)) && (gotMatch == false)) { 
    sendToLocation = "http://www.fibrohelpcenter.com/fibromyalgia-help/index.htm" ; 
    gotMatch = true; 
} 
siteToCheckFor = /www.fibrohelpcenter.com/;
if ((siteToCheckFor.test(requestedDomain)) && (gotMatch == false)) { 
    sendToLocation = "http://www.fibrohelpcenter.com/fibromyalgia-help/index.htm" ; 
    gotMatch = true; 
} 
if (gotMatch == false) { 
    sendToLocation = "/"; 
} 

if (sendToLocation != "/") { 
    window.location=sendToLocation;
} 
//--> 

























var msg = "Chiropractic Southeast, Our Commitment To You:  To help you obtain the improved health you deserve.";
var spacer = "     ";
var pos = 0;
function ScrollMessage() {
   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();







function preloader() 
{
     // counter     var i = 0;
     // create object     imageObj = new Image();
     // set image list     images = new Array();     images[0]="images/nav1.gif"   images[1]="images/nav2.gif"      // start preloading     for(i=0; i<=1; i++)      {          imageObj.src=images[i];     }

} 

