/*
// +-------------------------------------------------------------------------------------+
// | ChBtmImg - Kicsereli a menu gombok hatteranyagat                                    |
// +-------------------------------------------------------------------------------------+
*/

function chBtnImgOn(id) {
  	document.getElementById(id+'Left').style.backgroundImage="url(/themes/default/_design/menu_back_left_side_on.jpg)";
  	document.getElementById(id).style.backgroundImage="url(/themes/default/_design/menu_back_on_1pixel.jpg)";
  	document.getElementById(id+'Right').style.backgroundImage="url(/themes/default/_design/menu_back_right_side_on.jpg)";
}

function chBtnImgOff(id) {
  	document.getElementById(id+'Left').style.backgroundImage="url()";
  	document.getElementById(id).style.backgroundImage="url()";
  	document.getElementById(id+'Right').style.backgroundImage="url()";
}

function chBtnOn(id) {
  	$(id).appear({ duration: 1.0 });
}

function chBtnOff(id) {
  	$(id).fade({ duration: 1.0 });
}
