function bt(id,after) 
{ 
	if(window.ActiveXObject)//ie
	{
		eval(id+'.filters.blendTrans.stop();'); 
		eval(id+'.filters.blendTrans.Apply();'); 
		eval(id+'.src="'+after+'";'); 
		eval(id+'.filters.blendTrans.Play();'); 
	} else {
		var im = document.getElementById(id);		
		im.src = after;
	} 
}
function over(id){   
	document.getElementById(id).style.border='1px solid #675545';
	// 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='1px 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;
}  
