<!-- hide script from non-JavaScript browsers

	//set banner message

	var bText = "John Vitone established a model agency Connection back in 1985, since then he has been a Photographer & Make-up Artist specialising on the Body, hence the new agency name Body Models established 1999..........   Model Guard was also established in 1999 as a protection agency for models to report incidents in the modelling Industry which remain confidential for authorities.............     Body Models will aim to be Australia's largest source of fresh talent................    All Design, Graphics and Images are (c) 2000 Body Models and associates.................  "


	//set delay which controls banners speed
	delay=175

	//set the number of times to scroll
	var numScroll=2

	//initialize count variables
	var curCount=1
	var maxCount=0



	function scrollText()
	{




		if (maxCount==0)
		{
			//set maximum characters to scroll
			maxCount=numScroll * bText.length
		}

		window.status=bText		

		//track the number of characters to end for continuous scroll
		curCount++

		//shift first character to end for continuous scroll
		bText=bText.substring(1, bText.length)+bText.substring(0,1)

		//test for maximum character count
		if (curCount >= maxCount)
		{
			timerId=0			//zero out timer
			window.status="" 	//clear status
			return				//exit
		}
		else
		{
			//if not max count continue to scroll
			timerId = setTimeout("scrollText()", delay)
		}

		//comments		
	}

//-->
