// JavaScript Document

/***
window.onload = initBannerLink;

var thisAd = -1;

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}

function newLocation() {
	var adURL = new Array("airealapparel.com/shirts/check my fresh black/checkmyfreshblack.htm",
					  "airealapparel.com/shirts/check my fresh white/checkmyfreshwhite.htm",
					  "airealapparel.com/shirts/i sun pi black/isunpiblack.htm",
					  "airealapparel.com/shirts/i sun pi white/isunpiwhite.htm",
					  "airealapparel.com/shirts/i sun pi urban black/isunpiurbanblack.htm");
	
	document.location.href = "http://www." + adURL[thisAd];
	return false;
}

function rotate() {
	var adImages = new Array("shirts/check my fresh black/images/rgb/check my fresh black.jpg",
						 "shirts/check my fresh white/images/rgb/check my fresh white.jpg",
						 "shirts/i sun pi black/images/rgb/i sun pi black.jpg",
						 "shirts/i sun pi white/images/rgb/i sun pi white.jpg",
						 "shirts/i sun pi urban black/images/rgb/sundrips.jpg");
	
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 3 * 1000);
}
***/

// JavaScript Document

//window.onload = initBannerLink;
window.onload = choosePic;

var adImages = new Array("images/IMG_5114.JPG",
						 "images/storefront.jpg",
						 "images/Halo Halo.jpg",
						 "images/TakeoutMenuNew.jpg",
						 "images/IMG_5078.JPG",
						 "images/IMG_2356.jpg",
						 "images/CateringMenuNew2.jpg",
						 "images/IMG_5034.JPG",
						 "images/aireal logo.jpg",
						 "images/IMG_2357.jpg",
						 "images/IMG_5112.JPG"
						);

var adURL = new Array("melysmarket.com/aboutus.htm", 
					  "melysmarket.com/aboutus.htm",
					  "melysmarket.com/products.htm#refreshments",
					  "melysmarket.com/takeoutmenu.htm",
					  "melysmarket.com/products.htm#seafood",
					  "melysmarket.com/contact.htm",
					  "melysmarket.com/cateringservices.htm",
					  "melysmarket.com/products.htm",
					  "melysmarket.com/products.htm#misc",
					  "melysmarket.com/cateringservices.htm",
					  "melysmarket.com/takeoutmenu.htm"
					 );
var thisAd = -1;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 4 * 1000);
}

function newLocation() {
	document.location.href = "http://www." + adURL[thisAd];
	return false;
}

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}

function choosePic() {
	thisAd = Math.floor((Math.random() * adImages.length));
	document.getElementById("adBanner").src = adImages[thisAd];
	
	initBannerLink();
}


