function switch_sidebar() {
    var menu = document.getElementById('pinetix_sidebar');
    var cont = document.getElementById('pinetix_content');
//     alert(menu.style.width);
    if (menu.style.width == '5px') {
        menu.style.width = '200px';
        menu.firstChild.style.backgroundImage = "url('/img/hide.png')";
        menu.firstChild.style.cursor = 'w-resize';
        menu.lastChild.style.display = 'block';
        cont.style.paddingLeft = '270px';

    }
    else {
        menu.style.width = '5px';
        menu.firstChild.style.backgroundImage = "url('/img/show.png')";
        menu.firstChild.style.cursor = 'e-resize';
        menu.lastChild.style.display = 'none';
        cont.style.paddingLeft = '75px';
    }
}
