/*
	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]	= "http://english.unl.edu/images/promo/cather.jpg";
leftImgArray[0][1]	= "The Willa Cather Archive";
leftImgArray[0][2]	= "http://cather.unl.edu/";
leftImgArray[0][3]	= "";
leftImgArray[1]		= new Array;
leftImgArray[1][0]	= "http://english.unl.edu/images/promo/flwi.jpg";
leftImgArray[1][1]	= "Faculty Leadership for Writing Initiative";
leftImgArray[1][2]	= "http://flwi.unl.edu/";
leftImgArray[1][3]	= "";
leftImgArray[2]		= new Array;
leftImgArray[2][0]	= "http://www.unl.edu/newp/images/english.jpg";
leftImgArray[2][1]	= "English Department";
leftImgArray[2][2]	= "http://english.unl.edu/";
leftImgArray[2][3]	= "";
leftImgArray[3]		= new Array;
leftImgArray[3][0]	= "http://english.unl.edu/images/promo/nswc.jpg";
leftImgArray[3][1]	= "Nebraska Summer Writers' Conference";
leftImgArray[3][2]	= "http://nebraskawriters.unl.edu/";
leftImgArray[3][3]	= "";
leftImgArray[4]		= new Array;
leftImgArray[4][0]	= "http://english.unl.edu/images/promo/schooner.jpg";
leftImgArray[4][1]	= "Prairie Schooner";
leftImgArray[4][2]	= "http://prairieschooner.unl.edu/";
leftImgArray[4][3]	= "";

leftImgArray[5]		= new Array;
leftImgArray[5][0]	= "http://english.unl.edu/images/promo/topographia.JPG";
leftImgArray[5][1]	= "Topo/graphia";
leftImgArray[5][2]	= "http://english.unl.edu/programs/topographia.html";
leftImgArray[5][3]	= "";

leftImgArray[6]		= new Array;
leftImgArray[6][0]	= "http://www.unl.edu/newp/images/nwp_logo.jpg";
leftImgArray[6][1]	= "National Writing Project";
leftImgArray[6][2]	= "http://www.nwp.org/";
leftImgArray[6][3]	= "";


rotateImg("leftImgArray","rightRandomPromoImage",4);

