// JavaScript Document

// Begin AG am header rotator
var imageArray = new Array();

imageArray[0] = "images/headergreencombine.jpg"; 
imageArray[1] = "images/headerredcombine.jpg";
imageArray[2] = "images/headeryellowcombine.jpg";
function doIt()
{
	var rand = Math.floor(Math.random()*3); //Generating a random number between 0 and 3 here in your case you can replace 4 with 11 if you have 10 images
	
	var imgPath = "<img src='"+imageArray[rand]+"' alt='AG am in Kansas' height='175' width='457' border='0' />";
	
	document.getElementById("image").innerHTML = imgPath;
	
}
//end AG am header rotator

//Being Major Sponsor Header Rotator
var imageAdArray = new Array();

imageAdArray[0] = "<a href='http://www.kansassoybeans.com/KSChome.html' target='_blank'><img src='images/kansassoybeancommission.jpg' alt='Please visit our sponsors' height='175' width='443' border='0' /></a>";
imageAdArray[1] = "<a href='http://www.purplewave.com/' target='_blank'><img src='images/purplewavenew.jpg' alt='Please visit our sponsors' height='175' width='443' border='0' /></a>";

function topad()
{
	var rand2 = Math.floor(Math.random()*2); 
	var imgPath2 = imageAdArray[rand2];
	document.getElementById("ad").innerHTML = imgPath2;
}
//end major ad sponsor

//Begin footer ad number 1
var imageFooterAd1Array = new Array();

imageFooterAd1Array[0] = "<a href='http://www.ksre.ksu.edu/DesktopDefault.aspx' target='_blank'><img src='images/kstateresearchandextension.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a>"; 
imageFooterAd1Array[1] = "<a href='http://www.kswheat.com/' target='_blank'><img src='images/kansaswheat.jpg' alt='Please visit our sponsors' border='0' width='205' height='130'/></a>";
imageFooterAd1Array[2] = "<a href='http://www.heritagetractor.com/' target='_blank'><img src='images/heritagetractor.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a>";
imageFooterAd1Array[3] = "<a href='http://www.brownchevroletbuick.com/' target='_blank'><img src='images/brownchevrolet.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a>";
imageFooterAd1Array[3] = "<a href='http://www.kspork.org/' target='_blank'><img src='images/kansaspork.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a> "; 

function footerad1()
{
	// This generates a random number between 0 and whatever, include zero as a number in your count
	var rand3 = Math.floor(Math.random()*4); 

	var imgPath3 = imageFooterAd1Array[rand3];
	
	document.getElementById("footerad1a").innerHTML = imgPath3;
	
}
//end footer ad number 1

//Begin footer ad number 2
var imageFooterAd2Array = new Array();

imageFooterAd2Array[0] = "<a href='http://www.royfreywestern.com/' target='_blank'><img src='images/royfreywesternwear.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a>";
imageFooterAd2Array[1] = "<a href='http://sftmeats.com/' target='_blank'><img src='images/sftmeats.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a>";
imageFooterAd2Array[2] = "<a href='http://www.briggsauto.com/' target='_blank'><img src='images/briggsbusinesslink.jpg' alt='Please visit our sponsors' border='0' width='205' height='130' /></a>";

function footerad2()
{
	// This generates a random number between 0 and whatever, include zero as a number in your count
	var rand4 = Math.floor(Math.random()*3); 

	var imgPath4 = imageFooterAd2Array[rand4];
	
	document.getElementById("footerad2a").innerHTML = imgPath4;
	
}
//end footer ad number 2
