function arrowEffect(id, effect) {
	if(effect == 'over') {
		document.getElementById('arrows'+id).className = "wm-link-image-active";	
	} else if(effect == 'out') {
		document.getElementById('arrows'+id).className = "wm-link-image";
	}
}


function formButton(id, effect) {
	if(effect == 'over') {
		document.getElementById(id).style.background = '#00913F';
		document.getElementById(id).style.cursor = 'pointer';
		document.getElementById(id).style.color = '#FFFFFF';
	} else if(effect == 'out') {
		document.getElementById(id).style.background = '#EDEBE5';
		document.getElementById(id).style.cursor = 'default';
		document.getElementById(id).style.color = '#000000';
	}
}
