NumberOfImagesToRotate = 4;

FirstParta = '<img src="images/review';
LastParta = '.jpg" height="105" width="169"';

function printImagea() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);

if(r == 1){
	enda = 'alt="Excellent Westport Hotel in the best location, will definiately stay here again." title="Excellent Westport Hotel in the best location, will definiately stay here again.">';
}
else if(r == 2){
	enda = 'alt="Great location, the Westport Country Lodge was the perfect getaway and the rooms were comfortable" title="Great location, the Westport Country Lodge was the perfect getaway and the rooms were comfortable">';
}
else if(r == 3){
		enda = 'alt="The food was fantastic with a wide selection of dishes being offered - ill stay here again any time!" title="The food was fantastic with a wide selection of dishes being offered - ill stay here again any time!">';
}
else if(r == 4){
	enda = 'alt="Rooms were clean the staff was excellent and the morning breakfast was very tasty. All in all an excellent hotel" title="Rooms were clean the staff was excellent and the morning breakfast was very tasty. All in all an excellent hotel">';
}
document.write(FirstParta + r + LastParta + enda);
}
