var currentItem = 0;



var rotationItems = new Array();


//items in the array are as follows: Header_Title, Description, Image_location

rotationItems[1] = new Array('Fall Rush 2009','The Fall 2009 Rush is about to start! Get our calendar!','/rush','/wp-content/themes/default/images/rush-preview.png');

rotationItems[0] = new Array('Alumni Reunion and Weekend','Welcome back Brothers of Epsilon-Eta Zeta to a weekend of events','/alumni','/wp-content/themes/default/images/alumni-weekend.png');



jQuery(document).ready(function() {

	jQuery("#nextHeaderContent").click(function() {

		nextHeaderItem();

	});

	

	function nextHeaderItem(){

		currentItem++;

		if(currentItem == rotationItems.length){

			currentItem = 0;

		}

		

		jQuery("#homeimage").css({'background-image' : 'url(\''+rotationItems[currentItem][3]+'\')'});

		jQuery("#homeimage-header").text(''+rotationItems[currentItem][0]);

		jQuery("#homeimage-subtext").html('<a href="'+rotationItems[currentItem][2]+'">'+rotationItems[currentItem][1]+'</a>');

	}

});



function loadFirstHeaderItem(){

	jQuery("#homeimage").css({'background-image' : 'url(\''+rotationItems[0][3]+'\')'});

	jQuery("#homeimage-header").text(''+rotationItems[0][0]);

	jQuery("#homeimage-subtext").html('<a href="'+rotationItems[0][2]+'">'+rotationItems[0][1]+'</a>');

}

