// JavaScript Document head for 171 h x 126 w


// Expanding images script copyright Matthew LaCerais MLacerais@osc.state.ny.us 
// Distributed by hypergurl http://www.hypergurl.com 
// Permission to use script granted if above credits are left intact
 <!-- 
 function resizeImage(e) 
{ if (document.layers) { //Netscape 
var xMousePos = e.pageX; 
var xMousePosMax = window.innerWidth+window.pageXOffset; }
else if (document.all) 
{ 
// IE 
var xMousePos = window.event.x+document.body.scrollLeft; } 
else if (document.getElementById) 
{
	//Netscape 
	var xMousePos = e.pageX; var xMousePosMax = window.innerWidth+window.pageXOffset; 
}
var i = (-1 * (((xMousePos/252) - (342/252)) * ((xMousePos/252) - (342/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture1.width=(126 * i); picture1.height=(171 * i);

i = (-1 * (((xMousePos/252) - (420/252)) * ((xMousePos/252) - (420/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture2.width=(126 * i); picture2.height=(171 * i);

i = (-1 * (((xMousePos/252) - (525/252)) * ((xMousePos/252) - (525/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture3.width=(126 * i); picture3.height=(171 * i);

i = (-1 * (((xMousePos/252) - (600/252)) * ((xMousePos/252) - (600/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture4.width=(126 * i); picture4.height=(171 * i);

i = (-1 * (((xMousePos/252) - (680/252)) * ((xMousePos/252) - (680/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture5.width=(126 * i); picture5.height=(171 * i); 

i = (-1 * (((xMousePos/252) - (760/252)) * ((xMousePos/252) - (760/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture6.width=(126 * i); picture6.height=(171 * i); 

i = (-1 * (((xMousePos/252) - (840/252)) * ((xMousePos/252) - (840/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture7.width=(126 * i); picture7.height=(171 * i); 

i = (-1 * (((xMousePos/252) - (920/252)) * ((xMousePos/252) - (920/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture8.width=(126 * i); picture8.height=(171 * i); 

i = (-1 * (((xMousePos/252) - (1000/252)) * ((xMousePos/252) - (1000/252)))) + 1; 
if (i < .4) i = .4; 
if (i > 2) i = 2; picture9.width=(126 * i); picture9.height=(171 * i); 
} 
function output(message) { obj = eval("text"); obj.innerHTML 
= "<font size=\"5\">"+message+"</font>"; 
} 
function handleMouse() 
{ if (document.layers) { 
// Netscape document.captureEvents(Event.MOUSEMOVE); 
document.onmousemove = resizeImage; } else if (document.all) { 
// Internet Explorer 
document.onmousemove = resizeImage; } else if (document.getElementById) { 
// Netcsape 6 
document.onmousemove = resizeImage; } } 

function doNothing(e) { var i = 0.4; 
picture1.width=(126 * i); picture1.height=(171 * i); 
picture2.width=(126 * i); picture2.height=(171 * i); 
picture3.width=(126 * i); picture3.height=(171 * i); 
picture4.width=(126 * i); picture4.height=(171 * i); 
picture5.width=(126 * i); picture5.height=(171 * i); 
picture6.width=(126 * i); picture6.height=(171 * i); 
picture7.width=(126 * i); picture7.height=(171 * i); 
picture8.width=(126 * i); picture8.height=(171 * i); 
picture9.width=(126 * i); picture9.height=(171 * i); 

} 

function ignoreMouse() { if (document.layers) { 
// Netscape 
document.captureEvents(Event.MOUSEMOVE); document.onmousemove = doNothing; 
} else if (document.all) { 
// Internet Explorer 
document.onmousemove = doNothing; 
} else if (document.getElementById) { 
// Netcsape 6 
document.onmousemove = doNothing; 
} } 
//--> 

