/**************************************************************

	Script		: Simple Thumbnail Zoom Script
	Version		: 1.0

**************************************************************/

function swapImage(el){
var img = document.getElementById('bigImage');
img.src = el.href;
}
function initLinks( id ){
if ( !document.getElementsByTagName
|| !document.getElementById ) {
return;
}
var el = document.getElementById(id);
var as = el.getElementsByTagName('a');
var i = as.length;
while ( i-- ){
as[i].onclick = function() {
swapImage(this);
return false;
}
}
}
window.onload = function() {
initLinks('thumbTable');
}