


window.onload = function(){

EventSelectors.start(Rules);

}


function change_quotation(quoteno){
	
	if(quoteno ==3){
		quoteno = 1;
		}else{
		quoteno = quoteno + 1;	
		}
	
	$('quotation-body').title = quoteno;
	
	
	
	var quotations = [];
	var authors = [];
	quotations[1] = "&#8220;The video produced for Bosch on the Technology Horizons Award 2008 met with our very high expectations. It was both creative and captured the mood of the Award and we have decided to use it as the promotional showpiece for future years.&#8221;";
	authors[1] = "Helen Watkins, Marketing Communications Manager, Bosch";
	quotations[2] = "&#8220;Page Relations Ltd gets the job done.  To the timescale to the budget and always to high quality&#8221;";
	authors[2] = "Terry Marsh, Chief Executive,<br> Women into Science, Engineering and Construction";
	quotations[3] = "&#8220;We have worked with Page Relations in connection with a major presentation event at a prestigious London venue for three years. Their work has been excellent, prompt, personalised and committed. I recommend the company without reservation.&#8221;";
	authors[3] = "Sir John Rowling, Director of the London Performance Collaborative, <br> Department for Children Families and Schools";
	
	//alert(quotations[quoteno]);
	$('quotation-body').innerHTML = quotations[quoteno];
	$('quotation-author').innerHTML = authors[quoteno];
	
	var timeoutlength = quotations[quoteno].length * 40;
	
	//alert(timeoutlength);
	
	setTimeout("change_quotation("+$('quotation-body').title+")",timeoutlength);
	
	}
	
	
