// JavaScript Document
function left_menu_over(_tdObj,menuId){
	_tdObj.style.backgroundImage = "url(images/left_menu_bg_over.gif)";
	//$('tdRight_leftMenu_' + menuId).style.backgroundImage= "url(images/left_menu_bg_over.gif)";
	//$('left_menu_right_' + menuId).src='images/left_menu_bg_over.gif'
	_tdObj.style.color = "#c30815";
	_tdObj.style.fontWeight = 'bold';

}

function left_menu_out(_tdObj,menuId){
	_tdObj.style.backgroundImage = "url(images/left_menu_bg.gif)";
	//$('tdRight_leftMenu_' + menuId).style.backgroundImage= "url(images/left_menu_bg.gif)";
	//$('left_menu_right_' + menuId).src='images/left_menu_bg.gif'
	_tdObj.style.color = "#ffffff";
	_tdObj.style.fontWeight = 'normal';
}

function left_menu_sub_over(_tdObj,menuId){
	_tdObj.style.backgroundImage = "url(images/left_menu_sub_bg_over.jpg)";
	$('left_menu_sub_right_' + menuId).src='images/left_menu_sub_right_over.jpg'
	_tdObj.style.color = "#fcff00";
}

function left_menu_sub_out(_tdObj,menuId){
	_tdObj.style.backgroundImage = "url(images/left_menu_sub_bg.jpg)";
	$('left_menu_sub_right_' + menuId).src='images/left_menu_sub_right.jpg'
	_tdObj.style.color = "#033ca4";
}