function Milleteknik_Menu_MouseOver(tableCell) {

	if (tableCell == null || tableCell == 'undefined') {
		return;
	}

	tableCell.className = "menu_cell menu_cell_hover";
	//tableCell.style.background = "url(/milleteknik/images/menu/menu_background_item_selected.png)";
	//tableCell.style.backgroundImage = "";
}

function Milleteknik_Menu_MouseOut(tableCell)
{
	if (tableCell == null || tableCell == 'undefined') {
		return;
	}

	tableCell.className = "menu_cell";
	//tableCell.style.background = "url(/milleteknik/images/menu/menu_background_item.png)";
}


function Milleteknik_SideMenu_MouseOver(tableCell) {

	if (tableCell == null || tableCell == 'undefined') {
		return;
	}

	tableCell.className = "sidemenu_cell_hover";
	//tableCell.style.background = "url(/milleteknik/images/menu/menu_background_item_selected.png)";
	//tableCell.style.backgroundImage = "";
}

function Milleteknik_SideMenu_MouseOut(tableCell) {
	if (tableCell == null || tableCell == 'undefined') {
		return;
	}

	tableCell.className = "sidemenu_cell";
	//tableCell.style.background = "url(/milleteknik/images/menu/menu_background_item.png)";
}

