<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'
document.write('<table>\n<tr>\n<td valign="top">\n');

//Begin Column 1
// NOTE: For no allwebco copyright erase only the next 2 lines
document.write('<span class="Ads">');
document.write('<a href="http://lakecitiesinsurance.com/" target="_blank"><img src="http://www.lakecities.com/picts/Eric-Grunor-statef	arm-butto.gif"></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<span class="Ads">');
document.write('<a href="http://www.lakecitieschamber.com/" target="_blank"><img src="/picts/LCCC logo.gif" height="125px" width="125px"/></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<span class="Ads">');
document.write('<a href="http://lakecitiesprinting.com/" target="_blank"><img src="http://www.lakecities.com/picts/Printing Ad copy.jpg" /></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="http://www.iasisacademy.com/" target="_blank"><img src="http://www.lakecities.com/picts/Iasis-Button-Ad.gif"></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="" target="_blank"><img src="http://www.lakecities.com/picts/First-Western-Button-Ad.gif"></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="" target="_blank"><img src="http://www.lakecities.com/picts/ad_promo_copy.jpg"></a></span>');
document.write('<br>');
document.write('<br>');



//Begin Column 2

document.write('</td>\n<td valign="top">');

document.write('<a href="http://advertising.texaspress.com/" target="_blank"><img src="http://www.lakecities.com/picts/ai.jpeg"></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="http://www.denton-tx-insurance.com/" target="_blank"><img src="http://www.lakecities.com/LiveLocal/pics/Paragon.png"/></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="http://www.marykay.com/amathney" target="_blank"><img src="http://www.lakecities.com/picts/Mary-Kay-2.gif"/></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="http://nevasaffordables.com/" target="_blank"><img src="http://www.lakecities.com/LiveLocal/pics/Nevas.jpg"/></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="http://www.geico.com/local/gmcdonald/" target="_blank"><img src="http://www.lakecities.com/picts/Gieco-Ad.jpg"/></a></span>');
document.write('<br>');
document.write('<br>');

document.write('<a href="http://www.geico.com/local/gmcdonald/" target="_blank"><img src="http://www.lakecities.com/picts/Town-Country-Ad.jpg"/></a></span>');
document.write('<br>');
document.write('<br>');



//Begin Column 3
document.write('</td>\n<td valign="top">');


var dimages=new Array();
var dlinks = new Array();
var numImages=5;	//total number of images in ad changer


dimages[0]=new Image();
dimages[0].src="http://lakecities.com/picts/winprizesskyscraper.GIF";
dlinks[0] = "http://www.lakecities.com/rn/index.php/";

dimages[1]=new Image();
dimages[1].src="http://lakecities.com/picts/GotcherLotsSkyscraper.jpg";
dlinks[1] = "";

dimages[2]=new Image();
dimages[2].src="http://lakecities.com/picts/Nevas_Affordables_skyscraper.jpg";
dlinks[2] = "http://www.nevasaffordables.com/";

dimages[3]=new Image();
dimages[3].src="http://lakecities.com/picts/Imperial_Plumbing_Skyscraper.jpg";
dlinks[3] = "";

dimages[4]=new Image();
dimages[4].src="http://lakecities.com/picts/BennessereactiveBanner.jpg";
dlinks[4] = "http://www.bennessereactive.com/";




var curImage=-1;

function swapPicture()
{
  if (document.images)
  {
    var nextImage=curImage+1;
    if (nextImage>=numImages)
      nextImage=0;
    if (dimages[nextImage] && dimages[nextImage].complete)
    {
      var target=0;
      if (document.images.bigAd)
        target=document.images.bigAd;
      if (document.all && document.getElementById("bigAd")){
        target=document.getElementById("bigAd");
  		link = document.getElementById("bigAdLink");
	  }
      // make sure target is valid.  It might not be valid
      //   if the page has not finished loading
      if (target)
      {
        target.src=dimages[nextImage].src;
		link.href=dlinks[nextImage];
        curImage=nextImage;
      }

      setTimeout("swapPicture()", 5000);

    }
    else
    {
      setTimeout("swapPicture()", 5000);
    }
  }
}

//setTimeout("swapPicture()", 5000);

var dimages2=new Array();
var dlinks2= new Array();
var numImages2=2;	//total number of images in ad changer

dimages2[0]=new Image();
dimages2[0].src="http://lakecities.com/picts/DotPhot-160x600-LC.gif";
dlinks2[0] = "http://lakecities.com/Gallery/";

dimages2[1]=new Image();
dimages2[1].src="http://lakecities.com/picts/Texas-Calendars-Skyscraper-Ad.png";
dlinks2[1] = "http://www.texascalendars.com/";


var curImage2=-1;

function swapPicture2()
{
  if (document.images)
  {
    var nextImage=curImage+1;
    if (nextImage>=numImages)
      nextImage=0;
    if (dimages[nextImage] && dimages[nextImage].complete)
    {
      var target=0;
      if (document.images.bigAd)
        target=document.images.bigAd;
      if (document.all && document.getElementById("bigAd2"))
        target=document.getElementById("bigAd2");
  		link = document.getElementById("bigAdLink2");
      // make sure target is valid.  It might not be valid
      //   if the page has not finished loading
      if (target)
      {
        target.src=dimages2[nextImage].src;
		link.href=dlinks2[nextImage];
        curImage=nextImage2;
      }

      setTimeout("swapPicture2()", 5000);

    }
    else
    {
      setTimeout("swapPicture2()", 5000);
    }
  }
}
<!-- Begin
document.write('<span class="Ads">');
document.write('<a href="http://www.lakecities.com/rn/index.php" target="_blank" id="bigAdLink"><img id="bigAd" src="http://lakecities.com/picts/winprizesskyscraper.GIF"/></a></span>');
document.write('<br><br>');
document.write('<span class="Ads">');
document.write('<a href="http://www.lakecities.com/Gallery/" target="_blank" id="bigAdLink2"><img id="bigAd2" src="http://lakecities.com/picts/DotPhot-160x600-LC.gif"/></a></span>');

document.write('<br>');




document.write('</td>\n</tr>\n</table>');

//  End -->


//document.write('<span class="Ads">');
//document.write('<a href="http://www.theexchangegoldstore.com/" target="_blank"><img src="http://www.lakecities.com/picts/Gold-Store-button.gif" /></a></span>');
//document.write('<br>');
//document.write('<br>');


//document.write('<a href="http://www.benessereactive.com/" target="_blank"><img src="http://www.lakecities.com/picts/Bensessere-health-Button-Ad.gif" /></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="" target="_blank"><img src="http://www.lakecities.com/picts/Cafe-China-Button-Ad.gif" /></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.geico.com/local/gmcdonald" target="_blank"><img src="http://www.lakecities.com/picts/Geico-Corinth-button.gif" /></a></span>');
//document.write('<br>');
//document.write('<br>');


//document.write('<a href="http://www.chickene.com/" target="_blank"><img src="http://www.lakecities.com/picts/Chicken-Express-Button.gif" /></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.sidewalk-bistro.com/" target="_blank"><img src="http://www.lakecities.com/picts/ad_promo_copy.jpg"></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<span class="Ads">');
//document.write('<a href="http://www.littleelmdentalcare.com/" target="_blank"><img src="http://lakecities.com/picts/Little-Elm-Dental-Care-Butt.gif"></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.mastenair.com" target="_blank"><img src="http://www.lakecities.com/picts/Masten-Air-Button-Ad.gif"/></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<span class="Ads">');
//document.write('<a href="http://www.townandcountrymortgages.com/home.html" target="_blank"><img src="http://www.lakecities.com/picts/Affiliated-Bank-button.gif" /></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.lakecities.com/daisycleaners/" target="_blank"><img src="http://www.lakecities.com/picts/Daisy-Cleaners-button.gif"></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.wix.com/wilkersonphotography/gallery" target="_blank"><img src="http://www.lakecities.com/picts/Wilkerson-Photos-button.gif"></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.chilitosmexicanrestaurant.com/" target="_blank"><img src="http://www.lakecities.com/picts/Chilito\'s-Button-Ad.gif"></a></span>');
//document.write('<br>');
//document.write('<br>');

//document.write('<a href="http://www.newyorksubhubcorinth.net/" target="_blank"><img src="http://www.lakecities.com/picts/New-York-Sub-Hub-Button-Ad.gif"></a></span>');
//document.write('<br>');
//document.write('<br>');

//Affiliated Bank

//Veness

//1st Western
