// JavaScript Document
<!--

//    Script Editor:   Howard Chen

//    Browser Compatible for the script: IE 2.0 or Higher

//                                       Netscape 2.0 or Higher

//    This script is free as long as you keep its credits

var ShowString = "                                          " //The first line must be blank

			   + "Photo Gallery updated 14 September 2009      "

			   + "Summery Season is finished Sunday 13 September 2009"

			   + "La stagione estiva si è conclusa con Domenica 13 Settembre 2009"

//			   + "APERTO TUTTE LE SERE ---- OPEN EVERY NIGHT -----    "
			   
//			   + "Inside the disco the SMOKING ROOM  -  All'interno del locale trovate l'AREA FUMATORI        "
				 
				 
			   
			   
//-------------------------------------------------------------

var ShowWidth  = 120

var ShowHead   = 0

var ShowTail   = ShowWidth

var ShowLength = ShowString.length

//-------------------------------------------------------------

function Marquee ()

   {

   var DisplayString

   if (ShowHead < ShowTail)

     DisplayString = ShowString.substring(ShowHead, ShowTail)

   else

     DisplayString = ShowString.substring(ShowHead, ShowLength)

                   + ShowString.substring(       0, ShowTail)

//----------------------------------------------------------

   ShowHead = (ShowHead + 1 ) % ShowLength

   ShowTail = (ShowTail + 1 ) % ShowLength

   //----------------------------------------------------------

   window.status = DisplayString

   //----------------------------------------------------------

   TimerID = setTimeout("Marquee()", 100) //Change the number to change the speed (the fewer, the faster)

   }

//====================================================

//-->
