<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theLinks = new Array();
var theImages = new Array();
var altTags = new Array();

// do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '/images/work-ready-programs-10-03-08.gif';
//theImages[1] = '/images/testimonial2.gif';
//theImages[2] = '/images/testimonial3.gif';
//theImages[3] = '/images/testimonial4.gif';
//theImages[4] = '/images/testimonial5.gif';

theLinks[0] = 'http://www.skillstech.tafe.qld.gov.au/dds/search/openCourseSearch.do?institute_code=TTS';
theLinks[1] = '#2';
theLinks[2] = '#3';
theLinks[3] = '#4';
theLinks[4] = '#5';

altTags[0] = 'Enrol in a 10 week trade program. Get work-ready for an entry level position today.';

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
	document.write('<a href="'+theLinks[whichImage]+'" title="'+altTags[whichImage]+'"><img src="'+theImages[whichImage]+'" alt="'+altTags[whichImage]+'" border="0"></a>');
}

//  End -->