function redirect(theLocation) {
	window.location = theLocation;
}

function homepagePromo() {

	var randomNumber=(Math.floor(Math.random()*2)+1);
	var theImage = "";
	var theLink = "";
	var theDiv = $('#homepagePromo');
	
	if (randomNumber == 1) {
		theImage = "images/promo_fasteel_upland.jpg";
		theLink = "upland_fasteel.asp";
	} else if (randomNumber == 2) {
		theImage = "images/promo_fasteel_upland.jpg";
		theLink = "upland_fasteel.asp";
	}

	theDiv.dom('div').dom('a').attr({href:theLink}).dom('img').attr({src:theImage,border:0,width:'710px',height:'290px'});

}
