function buttontdmouseover(button,mode){
	//#6e6159
	if(mode==1){
		button.style.backgroundColor='#6e6159';
		button.getElementsByTagName('span')[0].style.backgroundColor='#6e6159';
	}
}
function buttontdmouseout(button,mode){
	//#4e4139
	if(mode==1){
		button.style.backgroundColor='#4e4139';
		button.getElementsByTagName('span')[0].style.backgroundColor='#4e4139';
	}
}
function spanmouseover(button,mode){
	if(mode==1){
		button.style.backgroundColor='#6e6159';
	}
}
function spanmouseout(button,mode){
	if(mode==1){
		button.style.backgroundColor='#4e4139';
	}
}
function go(button,mode){
	if(mode==1){
		location.href=button.getElementsByTagName('span')[0].getElementsByTagName('a')[0].href;
	}
	if(mode==2){
		location.href=button.getElementsByTagName('a')[0].href;
	}
}