// JavaScript Document


function btOver(id){
	//alert(id.toString());
	document.getElementById(id).style.opacity = (0.5);
	document.getElementById(id).style.filter = "alpha(opacity=50)";

}

function btOut(id){
	//alert(id);
	document.getElementById(id).style.opacity = (1);
	document.getElementById(id).style.filter = "alpha(opacity=100)";

}

