function fnDisplayDate()
	{
    var today = new Date();
    var year  = today.getYear();
    if (year < 1900)
		{
        year += 1900;
		}
	   document.write(year);
 		
}
function endorsement()
{
	var r_text = new Array ();
	r_text[0] = "<div class='endorsement'><h3>The office staff are flexible, approachable and organised.</h3>Cressida Roberts, Sundyne Corporation</div>";
	r_text[1] = "<div class='endorsement-big'><h3>We have done business with Club Class Chauffeurs for a number of years and would have no hesitation in recommending them.</h3>Cressida Roberts, Sundyne Corporation</div>";
	r_text[2] = "<div class='endorsement'><h3>Club Class  provide us with an excellent 24 hour service. </h3>Sue Taylor, Alfa Laval Ltd.</div>";
	r_text[3] = "<div class='endorsement'><h3>Staff are friendly and accommodating and will always go out of their way to assist.</h3>Catherine Garrard, SEOS Ltd.</div>";

	var i = Math.round(4*Math.random());
	document.write(r_text[i]);
}

