function button_hover(button_id) {
	document.getElementById("left_tab_hover" + button_id).style.backgroundImage = 'url(images/left_tab_hover.gif)';
	document.getElementById("middle_tab_hover" + button_id).style.backgroundColor = '#333333';
	document.getElementById("right_tab_hover" + button_id).style.backgroundImage = 'url(images/right_tab_hover.gif)';
}
function button_no_hover(button_id) {
	document.getElementById("left_tab_hover" + button_id).style.backgroundImage = '';
	document.getElementById("middle_tab_hover" + button_id).style.backgroundColor = '#000000';
	document.getElementById("right_tab_hover" + button_id).style.backgroundImage = '';
}
function jci_redirect(link) {
	window.location = link;

}