/**
 * @author kratzl
 */
function menupontok(menu){
    if (document.getElementById('balmenu_csukva').value == 1) {
        if (menu == 'ingatlan_hirek') 
            window.location.href = 'hirek-forumok.php?menupont=ingatlan_hirek&amp;tipus=1&amp;balmenu_csukva=1';
        if (menu == 'hirlevel') 
            window.location.href = 'hirek-forumok.php?menupont=hirlevel&amp;balmenu_csukva=1';
        if (menu == 'mediaajanlat') 
            window.location.href = 'hirek-forumok.php?menupont=mediaajanlat&amp;balmenu_csukva=1';
        if (menu == 'illetek') 
            window.location.href = 'hirek-forumok.php?menupont=illetek&amp;balmenu_csukva=1';
    }
    
    if (document.getElementById('balmenu_csukva').value == 0) {
        if (menu == 'ingatlan_hirek') 
            window.location.href = 'hirek-forumok.php?menupont=ingatlan_hirek&amp;tipus=1';
        if (menu == 'hirlevel') 
            window.location.href = 'hirek-forumok.php?menupont=hirlevel';
        if (menu == 'mediaajanlat') 
            window.location.href = 'hirek-forumok.php?menupont=mediaajanlat';
        if (menu == 'illetek') 
            window.location.href = 'hirek-forumok.php?menupont=illetek';
    }
}

function menu_csuk(){
    document.getElementById('alap').style.backgroundImage = 'url("kepek/kek_kicsi.jpg")';
    document.getElementById('torzs').style.backgroundImage = 'url("kepek/kek_kicsi.jpg")';
    document.getElementById('balmenu').style.width = '41px';
    document.getElementById('torzs').style.padding = '0 20px 0 60px';
    document.getElementById('menukep').style.display = 'none';
    document.getElementById('menukep_kicsi').style.display = 'block';
    document.getElementById('bal_bannerek').style.display = 'none';
    document.getElementById('balmenu_csukva').value = 1;
}


function menu_nyit(){
    document.getElementById('alap').style.backgroundImage = 'url("kepek/kek.jpg")';
    document.getElementById('torzs').style.backgroundImage = 'url("kepek/kek.jpg")';
    document.getElementById('balmenu').style.width = '181px';
    document.getElementById('torzs').style.padding = '0 20px 0 200px';
    document.getElementById('menukep').style.display = 'block';
    document.getElementById('menukep_kicsi').style.display = 'none';
    document.getElementById('bal_bannerek').style.display = 'block';
    document.getElementById('balmenu_csukva').value = 0;
}

function menubeallit(){
    if (document.getElementById('balmenu_csukva').value == 1) 
        menu_csuk();
}

