//Create Image Rollover Array and preload images
if (document.images)
{
	var travel_off = new Image()
	travel_off.src = "images/travel_off.gif"
	var travel_on = new Image()
	travel_on.src = "images/travel_on.gif"
	
	var adventure_off = new Image()
	adventure_off.src = "images/adventure_off.gif"
	var adventure_on = new Image()
	adventure_on.src = "images/adventure_on.gif"
	
	var fineart_off = new Image()
	fineart_off.src = "images/fineart_off.gif"
	var fineart_on = new Image()
	fineart_on.src = "images/fineart_on.gif"
	
	var assignment_off = new Image()
	assignment_off.src = "images/assignment_off.gif"
	var assignment_on = new Image()
	assignment_on.src = "images/assignment_on.gif"
	
	var contact_off = new Image()
	contact_off.src = "images/contact_off.gif"
	var contact_on = new Image()
	contact_on.src = "images/contact_on.gif"
	
	var about_off = new Image()
	about_off.src = "images/about_off.gif"
	var about_on = new Image()
	about_on.src = "images/about_on.gif"
}

//Turn image on
function act(imgName)
{
	if (document.images)
	document[imgName].src = eval(imgName + '_on.src');
}

//Turn image off
function inact(imgName, imgVal)
{
	if (document.images)
	document[imgName].src = eval(imgName + '_off.src');
}

//Vertical Picture Window
function windowVert(image)
{
	var win = window.open("","win","width=420,height=590,resizable,scrollbars");
	win.document.write("<html><head><title>Display Window</title></head>");
	win.document.write("<table align='center' cellpadding='0' cellspacing='0'><tr><td align='center'>");
	win.document.write("<img src='images/" + image + ".jpg' alt='Jeff Cantarutti Photography' border='0' />");
	win.document.write("</td>");
	win.document.write("<tr><td align='center'><a href='JavaScript:window.close();'>Close Window</a></td></tr></table>");
	win.document.write("</body></html>");
	win.document.close();
}

//Horizontal Picture Window - Horizontal
function windowHoriz(image)
{
	var win = window.open("","win","width=550,height=370,resizable,scrollbars");
	win.document.write("<html><head><title>Display Window</title></head>");
	win.document.write("<table align='center' cellpadding='0' cellspacing='0'><tr><td align='center'>");
	win.document.write("<img src='images/" + image + ".jpg' alt='Jeff Cantarutti Photography' border='0' />");
	win.document.write("</td>");
	win.document.write("<tr><td align='center'><a href='JavaScript:window.close();'>Close Window</a></td></tr></table>");
	win.document.write("</body></html>");
	win.document.close();
}

//Vertical Picture Window
function windowVertWedding(image)
{
	var win = window.open("","win","width=550,height=550,resizable,scrollbars");
	win.document.write("<html><head><title>Display Window</title></head>");
	win.document.write("<table align='center' cellpadding='0' cellspacing='0'><tr><td align='center'>");
	win.document.write("<img src='images/" + image + ".jpg' alt='Jeff Cantarutti Photography' border='0' />");
	win.document.write("</td>");
	win.document.write("<tr><td align='center'><a href='JavaScript:window.close();'>Close Window</a></td></tr></table>");
	win.document.write("</body></html>");
	win.document.close();
}
