/* Banner Up! - Copyright 1999-2000 By Heidi Allen 
Knowledge Hound: The How-To Hunter - Learn how to do almost anything...for free!
Please visit us at http://www.knowledgehound.com
License for use of this script is granted if and only if
this entire copyright notice is included with it. We do not provide
support for this script. It is provided solely as a friendly gesture.
Use at your own risk. Thanks! */
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
var image="";
var noBanners = 6 ; 
var banners=noBanners;
var rand = 0;
var bannerChoice = 1 ; 

function cycle() {
	if (++banners > noBanners) 
	{	
		bannerChoice= randomValue (bannerChoice, noBanners);
		loadbanners();
		document.banner1.src = image;
		window.setTimeout('cycle();',3000);
	}
}

function randomValue(oldValue, high) 
{ 
	rand = 1 + Math.floor(Math.random() * high); 
	while (rand == oldValue)
	{
		rand = 1 + Math.floor(Math.random() * high); 
	}	
	return rand;
}

function loadbanners() {
	if (bannerChoice==1)
		{
		image="Pics/advertising/clientBanners/salsaTalkShow.jpg";
		}
	if (bannerChoice==2)
	{
	image="Pics/advertising/clientBanners/montero.gif";
	}
	if (bannerChoice==3)
	{
	image="Pics/advertising/clientBanners/LDA.jpg";
	}
	if (bannerChoice==4)
	{
	image="Pics/advertising/clientBanners/salsaHeaven.jpg";
	}
		if (bannerChoice==5)
	{
	image="Pics/advertising/clientBanners/UKcongress2006.jpg";
	}
		if (bannerChoice==6)
	{
	image="Pics/advertising/LondonSalsaAdStatic1.2.gif";
	}
}

var link = "http://www.salsaradiofm.com"
function urlswitch() {
	if (bannerChoice==1)
	{
	link = "http://www.salsafmlondon.com";
	}
	if (bannerChoice==2)
	{
	link = "http://www.monterouk.com/merchandise/index.html";
	}
	if (bannerChoice==3)
	{
	link = "http://www.latindanceacademy.co.uk/";
	}
	if (bannerChoice==4)
	{
	link = "http://www.salsaheaven.co.uk/venues/club-heaven/";
	}
	if (bannerChoice==5)
	{
	link = "http://www.salsa-uk.com/congress/";
	}
	if (bannerChoice==6)
	{
	link = "ads.php";
	}
		
	return link;
}