/*
thatpirategame.com
javascript
09.11.2005

prepared by
media firma :: rich goidel
www.mediafirma.com
*/


// ---- preload rollover images ----
if (document.images) {
	imgArray = new Array('howto','buy','free','booty');
	for (x = 0; x < 7; x++) {
		eval(imgArray[x] + '_off = new Image()');
		eval(imgArray[x] + '_off.src = "http://www.thatpirategame.com/images/navigation/' + imgArray[x] + '.gif"');
		eval(imgArray[x] + '_ro = new Image()');
		eval(imgArray[x] + '_ro.src = "http://www.thatpirategame.com/images/navigation/' + imgArray[x] + '_ro.gif"');
	}
}
	
// ---- rollover swapImage ----
function swapImage( img_name, img_state ) {
	document[img_name].src = eval(img_name + '_' + img_state + ".src" );
}