var currentdate = 0;
var core = 0;

function StringArray (n) {
	this.length = n;
	for (var i =1; i <= n; i++) {
		this[i] = ' ';

	}
}

image = new StringArray(9);
image[0] = '\<a href="/testimonials/cs-glasgow-science-centre.shtml"\>\<img src="images/quotes/gsc.gif" alt="" title="" width="280" height="104"\>';
image[1] = '\<a href="/testimonials/cs-scottish-museums-council.shtml"\>\<img src="images/quotes/smc.gif" alt="" title="" width="280" height="104"\>';

var ran = 60/image.length;

function ranimage() {
	var core = Math.round(1*Math.random());
	return(image[core]);
}

document.write(ranimage());
