/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function showProperActiveMenu($id_name) {
    obj = document.getElementById($id_name);
    if (!obj) {
        obj = document.getElementById("spletni_obrazec");
    }
    if (obj) {
        obj.style.backgroundColor = "#FCFCFC";
        obj.style.borderRight = "1px";
        obj.style.borderRightStyle = "solid";
        obj.style.borderRightColor = "#FCFCFC";
    }
}

window.onload = function() {
    showProperActiveMenu(current_menu);
}