function SwapPicBig(PicBigId, afterSrc) 
{ 
	if(window.ActiveXObject)//ie
	{
		eval(PicBigId+'.filters.blendTrans.stop();'); 
		eval(PicBigId+'.filters.blendTrans.Apply();'); 
		eval(PicBigId+'.src="'+afterSrc+'";'); 
		eval(PicBigId+'.filters.blendTrans.Play();'); 
	} else {
		var im = document.getElementById(PicBigId);		
		im.src = afterSrc;
	} 
}
function over(id){   
	document.getElementById(id).style.border='0px solid #FF6666';
	// IE/Win
 	document.getElementById(id).style.filter='alpha(opacity=100)';
    // Safari<1.2, Konqueror
    document.getElementById(id).style.KHTMLOpacity = 100/100;
    // Older Mozilla and Firefox
    document.getElementById(id).style.MozOpacity = 100/100;
    // Safari 1.2, newer Firefox and Mozilla, CSS3
   document.getElementById(id).style.opacity = 100/100;	
}   
function out(id){   
	document.getElementById(id).style.border='0px solid #cccccc';
	// IE/Win
 	document.getElementById(id).style.filter='alpha(opacity=50)';
    // Safari<1.2, Konqueror
    document.getElementById(id).style.KHTMLOpacity = 50/100;
    // Older Mozilla and Firefox
    document.getElementById(id).style.MozOpacity = 50/100;
    // Safari 1.2, newer Firefox and Mozilla, CSS3
   document.getElementById(id).style.opacity = 50/100;
}  

function SwapPic(PicId, afterSrc) 
{ 
	var im = document.getElementById(PicId);		
	im.src = afterSrc;
}
