// JavaScript Document
if (document.images) {
	var img = new Array();
	img[0] = 'images/1_0.jpg';
	img[1] = 'images/1_1.jpg';
	img[2] = 'images/nav_controls_0.jpg';
	img[3] = 'images/nav_controls_1.jpg';
	img[4] = 'images/2_0.jpg';
	img[5] = 'images/2_1.jpg';
	img[6] = 'images/3_0.jpg';
	img[7] = 'images/3_1.jpg';
	img[8] = 'images/4_0.jpg';
	img[9] = 'images/4_1.jpg';
	img[10] = 'images/5_0.jpg';
	img[11] = 'images/5_1.jpg';
	img[12] = 'images/nav_faqs_0.jpg';
	img[13] = 'images/nav_faqs_1.jpg';
	img[14] = 'images/nav_home_0.jpg';
	img[15] = 'images/nav_home_1.jpg';
	img[16] = 'images/nav_about_0.jpg';
	img[17] = 'images/nav_about_1.jpg';
	img[18] = 'images/nav_contact_0.jpg';
	img[19] = 'images/nav_contact_1.jpg';
		
	var im = new Array();
	
	for (var i = 0; i < img.length; i++) {
		im[i] = new Image();
		im[i].src = img[i];	
	}
}

function toggleImg(imageName, num) {
	if (document.images) {
		document.images[imageName].src = im[num].src;
	}
}

function popup(thename) {
		window.open(thename, "", "width=360, height=360,scrollbars=0");
	}
	
function resolution() {
		document.write("<input name='screenresolution' type='hidden' value='" + screen.width + "x" + screen.height + "' />");
	}