/****************************************/
/* Name: 	NBSRotate.js 		*/
/* Author:	CJH		   	*/
/* Date:	23/05/2008	   	*/
/* Desc:	Rotating quotes for NBS */
/****************************************/

$(document).ready(function() {

	var quote = new Array();

	/* Populate the arrays with quote text */
	quote[0] = ["\"This Advanced Diploma took me onto the next level of management helping me to get a better understanding of the how to run an independent business\"", "D.W, Tenant Everards Regarding the Advanced Diploma in Leisure Retailing"];
	quote[1] = ["\"The teaching quality and facilities at Nottingham Business School are as good as London Business School\"", "Anne Cui, Director of HR, Nike, China"];
	quote[2] = ["\"I chose the School because of its good reputation for work placements and job prospects on graduation\"", "Daniel Thorpe BA (Hons) Business Studies (Accounting and Finance)"];
	quote[3] = ["\"I thought that I was a strong people manager until I went on the course; I learnt things that made me change how I managed\"", "Pub Manager, J. D. Wetherspoon Regarding the Advanced Diploma in Leisure Retailing"];
	quote[4] = ["\"The School is engendering top class business people for the future\"", "Maria Iliffe, Derbyshire and Nottinghamshire Chamber of Commerce"];
	
	/* Select a random quote */
	var randomID = Math.floor(Math.random() * (quote.length));
	
	
	/* Replace the text */
	$(".rotatingQuote").text(quote[randomID][0]);
	$(".quoteReference").text(quote[randomID][1]);

});
