// JavaScript Document for thumbnails

var lastID = 0;
function SelectImg(id) {
/*if (lastID > 0) {
document.getElementById(lastID).className = "thumbNormal";
}
document.getElementById(id).className = "thumbSelected";*/



var temp=document.getElementById(id).src;


/*var a = new Array();
a=temp.split('=');
temp=a[1];
a=temp.split('&');
temp=a[0];

var t;
var p;
var a;
var f;
var x;*/


document.getElementById(0).src =temp ;
lastID = id;
}
function LoadTrigger() {
SelectImg(1);
}
window.onload = LoadTrigger;