/*
	Feel free to change these and add your own images.
	Each image has up to 4 attributes associated with it:
	[0] = URL of the image source (.jpg .gif) *
	[1] = ALT text description of the image *
	[2] = URL to take the client to when the image is clicked (optional)
	[3] = javascript onclick events (optional)
	
	The images will rotate after the number of seconds given to the rotateImg
	function (0 for no rotate).
 */
var leftImgArray	= new Array;
leftImgArray[0]		= new Array;
leftImgArray[0][0]	= "../sharedcode/KnowWork.gif";
leftImgArray[0][1]	= "UNL Extension";
leftImgArray[0][2]	= "http://extension.unl.edu";
leftImgArray[0][3]	= "";
leftImgArray[1]		= new Array;
leftImgArray[1][0]	= "../sharedcode/extension.jpg";
leftImgArray[1][1]	= "Extension";
leftImgArray[1][2]	= "http://www.extension.org/";
leftImgArray[1][3]	= "";
leftImgArray[2]		= new Array;
leftImgArray[2][0]	= "../sharedcode/4hclub.jpg";
leftImgArray[2][1]	= "4-H Club";
leftImgArray[2][2]	= "http://4h.unl.edu";
leftImgArray[2][3]	= "";
leftImgArray[3]		= new Array;
leftImgArray[3][0]	= "../sharedcode/husker.gif";
leftImgArray[3][1]	= "Admissions - Be a Husker";
leftImgArray[3][2]	= "http://admissions.unl.edu";
leftImgArray[3][3]	= "";
leftImgArray[4]		= new Array;
leftImgArray[4][0]	= "../sharedcode/acreins.jpg";
leftImgArray[4][1]	= "Acreage Insights";
leftImgArray[4][2]	= "http://acreage.unl.edu/";
leftImgArray[4][3]	= "";
leftImgArray[5]		= new Array;
leftImgArray[5][0]	= "../sharedcode/mypyrmd.gif";
leftImgArray[5][1]	= "My Pyramid Resources";
leftImgArray[5][2]	= "http://lancaster.unl.edu/food";
leftImgArray[5][3]	= "";
leftImgArray[6]		= new Array;
leftImgArray[6][0]	= "../sharedcode/parent4e.gif";
leftImgArray[6][1]	= "Parents Forever";
leftImgArray[6][2]	= "http://lancaster.unl.edu/family/PFStatewide.shtml";
leftImgArray[6][3]	= "";


rotateImg("leftImgArray","leftRandomPromoImage",10);

