function hover_button(id)
{
	document.getElementById('img_btn_left' + id).src='images/buttons/btn_l_a.png';
	document.getElementById('img_btn_center' + id).style.backgroundImage='url(images/buttons/btn_c_a.png)';
	document.getElementById('img_btn_right' + id).src='images/buttons/btn_r_a.png';
	
	document.getElementById('img_btn_txt' + id).style.color='#FFFFFF';
}

function out_button(id)
{
	document.getElementById('img_btn_left' + id).src='images/buttons/btn_l.png';
	document.getElementById('img_btn_center' + id).style.backgroundImage='url(images/buttons/btn_c.png)';
	document.getElementById('img_btn_right' + id).src='images/buttons/btn_r.png';

	document.getElementById('img_btn_txt' + id).style.color='#FFFFFF';
}

