// BASED ON THE ShowImg SCRIPT FOUND ON
// http://www.laughland.biz/index.php, WHICH
// IS SIMILAR TO SEVERAL OTHERS I GLANCED AT

var images = new Array();

images[0] = "carpooling";
images[1] = "commuting";
images[2] = "errand_pooling_shopping";
images[3] = "commuting_saves";

var image_top_tags = new Array();

image_top_tags[0] = "carpooling - young adults carpooling to an event";
image_top_tags[1] = "young man commuting to work";
image_top_tags[2] = "two young women on a shopping trip saving gas";
image_top_tags[3] = "young woman commuting to work";

var image_bottom_tags = new Array();

image_bottom_tags[0] = "carpooling for everyone";
image_bottom_tags[1] = "commuting for everyone";
image_bottom_tags[2] = "errand pooling - shopping trip";
image_bottom_tags[3] = "commuting for everyone";

var number = images.length;
var increment = Math.floor(Math.random() * number);

function ShowImgT() {
	var strTemp ='<img src="images/' + images[increment] + '_t.jpg" width="232" height="112" alt="' + image_top_tags[increment] + '" style="border: 0px; padding: 0px;">';
	document.write(strTemp);
}

function ShowImgB() {
	var strTemp ='<img src="images/' + images[increment] + '_b.jpg" width="232" height="112" alt="' + image_bottom_tags[increment] + '">';
	document.write(strTemp);
}

function ShowImgB6() {
	var strTemp ='<img src="images/' + images[increment] + '_b6.jpg" width="232" height="112" alt="' + image_bottom_tags[increment] + '" style="border: 0px; padding: 0px;" >';
	document.write(strTemp);
}