/////////////////////////////////////////////////////////// // Buttons /////////////////////////////////////////////////////////// function button_over_1(eButton) { eButton.style.backgroundColor = "#f0f0f0"; eButton.style.borderColor = "#f0f0f0"; } function button_out_1(eButton) { eButton.style.backgroundColor = ""; eButton.style.borderColor = ""; } function button_over_2(eButton) { eButton.style.backgroundColor = "#ffffff"; eButton.style.borderColor = "#ffffff"; } function button_out_2(eButton) { eButton.style.backgroundColor = "#f1f1f1"; eButton.style.borderColor = "#f1f1f1"; } function click_button(eButton) { eButton.children.tags('a','img')[0].click(); } /////////////////////////////////////////////////////////// // Buttons ///////////////////////////////////////////////////////////