$kuj(document).ready(function(){
	
	//set up array
	var taglines = new Array();
		taglines[0] = "more than just books";
		taglines[1] = "at the crossroads of people and ideas";
		taglines[2] = "research tools and expertise for twenty-first century scholars";
		taglines[3] = "home of world-class collections and up-to-the-minute resources";
		taglines[4] = "your partners in teaching, learning and research";
		taglines[5] = "at the heart of campus";
		taglines[6] = "Providing access to the world of ideas";
		
	// get array length	
	var numTaglines = ((taglines.length)-1);
	
	// pick a random number between 0 and numTaglines-1
	var numTagline = Math.random()*(numTaglines);
	numTagline = Math.round(numTagline);
	
	// set the new tagline as the item in the array with a position equal to the random number
	
	$kuj("#footertagline h5").text(taglines[numTagline]);
	
});
