// JavaScript Document
var styl;
var ctext = "ac";

window.onload=function(){
	//change for automail-pro default
	
	if(document.getElementById(ctext)==null){
		ctext = "ad";
	}
}
function goArrow(styl){
	document.getElementById(ctext).style.display = 'none';	
	document.getElementById("a").className = styl;
	document.getElementById(styl).style.display = 'block';
	ctext = styl;
	
}
