		/*
		   see http://ncthakur.itgo.com/js08.htm

		Rotating image or text(You can use for changing banners)
		Author: Narayan Chand Thakur
		Source: http://ncthakur.itgo.com/
		This may be used freely as long as this message is intact.
		*/
		 

		//you may add your image file or text below
		var item=new Array()
		item[00]="<strong><font face='arial' size='2' color='Blue'>      <BR>Let SBSC Put YOU <BR> <BR> on the ChairLift !  </font></strong>"
		item[01]="<strong><font face='arial' size='2' color='darkgreen'> <BR>Your Vacation is waiting,,, <BR>  <BR>Right this way   </font></strong>"
		item[02]="<strong><font face='arial' size='2' color='Blue'>      <BR>Stay with SBSC and Ski for FREE...  <BR> <BR>well almost free</font></strong>"
		item[03]="<strong><font face='arial' size='2' color='Orange'>    <BR>The most memorable vacations are made up<BR> of a million tiny elements...<BR>good thing we're detailed oriented</font></strong>"
		item[04]="<strong><font face='arial' size='2' color='Blue'>      <BR>An Attitude...  A joy for Living...   <BR> A Welcoming Spirit...   <BR> SOMETIMES 'Crazy' just dosn't cover it</font></strong>"
		item[05]="<strong><font face='arial' size='2' color='Yellow'>    <BR>Three days in Mammoth for a <BR>Time-Management and Wellness Retreat...<BR> So where does 'Lift Ticket' go <BR>on your Expence Report</font></strong>"
		item[06]="<strong><font face='arial' size='2' color='Darkgreen'> <BR>Get Closer to HEAVEN This Weekend,,,   <BR> <BR> Join SnowBusters @ Altitude 9000</font></strong>"
		item[07]="<strong><font face='arial' size='2' color='white'>     <BR>Anyone can take a vacation...   <BR> <BR> a fortunate Few will take FULL advantage of it</font></strong>"
		item[08]="<strong><font face='arial' size='2' color='Orange'>    <BR>Some call it &ldquo;apr&egrave;s-ski&rdquo;,  <BR><BR> we just call it ParTaaa!!!!</font></strong>"
		item[09]="<strong><font face='arial' size='2' color='Blue'>      <BR>You called in sick on Thurs & Fri...<BR> Monday morning Goggle Marks and Tan Lines<BR>are gonna give you away</font></strong>"
		item[10]="<strong><font face='arial' size='2' color='Yellow'>    <BR>SBSC Makes it easy to Try...<BR>YOU make it easy to DO... pretty solid equation,,,<BR>bringing the FUN back to the FrontSide</font></strong>"
		var current=0

		var ns6=document.getElementById&&!document.all
		function changeItem(){
		if(document.layers){
		document.layer1.document.write(item[current])
		document.layer1.document.close()
		}
		if(ns6)document.getElementById("div1").innerHTML=item[current]
		{
		if(document.all){
		div1.innerHTML=item[current]
		}
		}
		if (current==10) current=0
		else current++
		setTimeout("changeItem()",9000)
		}
		window.onload=changeItem
