// JavaScript Document
document.write("<table class=bodywhitesmall  width=300 border=0 cellspacing=0 cellpadding=0   align=center>")
document.write("<tr>")
document.write("<td class=bodywhitesmall><p align=center><font class=bodywhitesmall >Copyright &copy;2005 - 2009 Cedar Lodge. All rights reserved.<br> Last updated on December 31, 2008<br>Website design by <a href=http://www.omnisourceit.com target=_blank class=bodywhitesmall>OmniSource IT Solutions</a>.</font></td>")
document.write("</tr>")
document.write("</table><br>")
document.write("<table border=0 cellspacing=0 cellpadding=0 class=bodywhitesmall align=center>")
document.write("<tr> ")
document.write("<td align=right>Top<img src=../images/spacer2.gif border=0 width=6 height=2 alt='top of page' /> </td>")
document.write("<td align=right><img src=../images/shim.gif width=5 height=10></td>")
document.write("<td align=right><a href=# onMouseOut=MM_swapImgRestore() onMouseOver=MM_swapImage('Image491','','../images/button_top_f2.gif',1)><img name=Image491 border=0 src=../images/Button_top.gif width=21 height=17 alt='top of page'/></a></td>")
document.write("</tr>")
document.write("</table>")
//bnb.com free scrolling statusbar script 
function StatusBar_Update()
{
	if (this.loc < this.width)
	{
		window.status = this.spaces.substring(0,this.width-this.loc)+this.text.substring(0,this.loc);
	}
	else
	{
		var len = (this.loc-this.width > this.text.length) ? (this.loc-this.width - this.text.length) : this.width;
		window.status = this.text.substr(this.loc-this.width,len);
	}
	this.loc++;
	if (this.loc > this.text.length+this.width)
		this.loc = 0;
}

function StatusBar_Start()
{
	for (var i=0;i<this.width;i++)
		this.spaces +=" ";

	setInterval("gStatus.Update()",this.speed);
}

function StatusBar()
{
	this.width = 100;
	this.text = "";
	this.speed = 100;
	
	this.loc = 0;
	this.spaces = "";

	this.Update = StatusBar_Update;
	this.Start = StatusBar_Start;
}
var gStatus = new StatusBar();

// Speed and Text Settings
gStatus.width = 100;
gStatus.text = "Your perfect vacation starts by calling:(603) 366-4316 ~ Reservations: 1-800-366-4883 Cedar Lodge Weirs Beach, New Hampshire USA  ";
gStatus.speed = 100;    

// Start statusbar scroller method
gStatus.Start();