var currentdate = 0;
var core = 0;

function StringArray (n) {
	this.length = n;
	for (var i =1; i <= n; i++) {
		this[i] = ' ';
	}
}

image = new StringArray(13);
image[0] = '1';
image[1] = '2';
image[2] = '3';
image[3] = '4';
image[4] = '5';
image[5] = '6';
image[6] = '7';
image[7] = '8';
image[8] = '9';
image[9] = '10';
image[10] = '11';
image[11] = '12';
image[12] = '13';

titleswf = new StringArray(13);
titleswf[0] = 'We are the future, teaching tommorrows veterinary scientists';
titleswf[1] = 'We are the future, teaching tommorrows veterinary scientists';
titleswf[2] = 'We are the future, teaching tommorrows veterinary scientists';
titleswf[3] = 'We are the future, discovering tommorrows cures';
titleswf[4] = 'We are the future, discovering tommorrows cures';
titleswf[5] = 'We are the future, discovering tommorrows cures';
titleswf[6] = 'We are the future, improving the lives of animals';
titleswf[7] = 'We are the future, improving the lives of animals';
titleswf[8] = 'We are the future, improving the lives of animals';
titleswf[9] = 'We are the future, improving the lives of animals';
titleswf[10] = 'We are the future, discovering tommorrows cures';
titleswf[11] = 'We are the future, teaching tommorrows veterinary scientists';
titleswf[12] = 'We are the future, teaching tommorrows veterinary scientists';

var ran = 60/image.length;
var myimage;
function ranimage() {
	currentdate = new Date();
	core = currentdate.getSeconds();
	core = Math.floor(core/ran);
	myimage = image[core];
	titleswf = titleswf[core];
	return(image[core]);
}