
function tabover(id){
document.getElementById(id).style.color="#000000"; //FFFFCC
document.getElementById(id).style.backgroundColor="#30be2d";



		}
function tabout(id){
document.getElementById(id).style.color="#000000";	
document.getElementById(id).style.backgroundColor="#bef4bd";
}
		
function obrover(id){
document.getElementById(id).style.borderColor="#68491d"	;
}
function obrout(id){
document.getElementById(id).style.borderColor="#78521b"	;
}
function menu_over(id){
document.getElementById(id).style.borderColor="#0d7b14"	;
document.getElementById(id).style.borderLeftColor="#30be2d";
document.getElementById(id).style.borderRightColor="#30be2d";
//document.getElementById(id).style.color="#0d7b14";
}
function menu_out(id){
document.getElementById(id).style.borderColor="#30be2d"	;
}
function opacityon(id) {
	
	document.getElementById(id).style.filter = 'alpha(opacity=40)';
	document.getElementById(id).style.opacity = 0.4;
	document.getElementById(id).style.borderColor="#78521b"	;
	
}
function opacityoff(id) {
	
	document.getElementById(id).style.filter = 'alpha(opacity=100)';
	document.getElementById(id).style.opacity = 1;
	document.getElementById(id).style.borderColor="#68491d"	;
}
function Round(id)
{
mint.fx.Round(id);
}


