/*	-------------------------------------------------------------
	Tote Tank - js
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	.autor			GMI Technologies
	.version		1.0
	.url			http://202.71.142.164/ToteTank/html-integration/index.htm
	.timestamp		23-09-2009
	.created by		Ajay Deshpande
	-------------------------------------------------------------	*/

var thumbId;

function dispBingImg(id1){
	dispPhoto = document.getElementById('displayImg');	
	thumbId =   '../images/' + id1 + '-big.gif';
	
	setTimeout("document.getElementById('displayImg').style.opacity = 0.40",0);
	setTimeout("document.getElementById('displayImg').style.filter = 'alpha(opacity=40)'",0);
	setTimeout("document.getElementById('loaderCont').style.display = 'block'",0);	
	setTimeout('changeImg()', 2000);
}

function changeImg(){	
	document.getElementById('loaderCont').style.display = "none";
	document.getElementById('displayImg').src = thumbId;
	document.getElementById('displayImg').style.opacity = "1";
	document.getElementById('displayImg').style.filter = 'alpha(opacity=100)';
}
