jQuery.ajaxSetup({contentType: "application/x-www-form-urlencoded; charset=utf-8"});

function resolution_bg() {
    var w = window.screen.width;
    
    if(w <= 1050) dir = "1024";
    if(w > 1050) dir = "1280";
    if(w > 1300) dir = "1680";
    if(w > 1700) dir = "1920";
    
    $('body').css("background-image", "url('/site_media/bg/"+dir+"/"+page+".jpg')");
}

$(window).load(function () {
    resolution_bg();
});

$(document).ready(function(){
    /* png transparent for IE6 */
    $.ifixpng('/site_media/img/pixel.gif'); 
    $('div#title_page').ifixpng();
    $('div#frame_header').ifixpng();
    $('div#viewer-top').ifixpng();
	Bottom_Hide();
	Right_Hide();
})


/* all functions */
function f_img(btn, stan){
    document.getElementById("img_"+btn).src = '/site_media/img/'+btn+'-'+stan+'.png';
}

function choose_file(id){
    var file = 'file_'+id;
    var flag = document.getElementById('fv_'+id);
    
    if(flag.value == 0){
        $('#'+file).css("background-image", "url(/site_media/img/zaznacz_1.png)");
        flag.value = 1;
    } else {
        $('#'+file).css("background-image", "url(/site_media/img/zaznacz_0.png)");
        flag.value = 0;
    }
}

function file_all(flag){
    for(var i=1;i<4;i++){
        $('#file_'+i).css("background-image", "url(/site_media/img/zaznacz_"+flag+".png)");
        document.getElementById('fv_'+i).value = flag;
    }
}


function loguj(id){
    $('#ContentPage').slideUp('slow', function () {
        $('#ContentPage').html("<p style='text-align: center; padding-top: 70px; margin:0px;'><img src='/site_media/img/loader_mini.gif' alt='' /></p>");
        $('#ContentPage').show();
        
        $.ajax({
             type: "GET",
             url: "inc/ajax/ajax_get_press-zone.php",
             success: function(msg){
                    $('#ContentPage').hide();
                    $('#ContentPage').html( msg );
                    $('#ContentPage').slideDown('slow');
             }
         });
    });
}

function get_photo(id){
    $('#viewer-bottom').fadeOut('slow', function () {
        $('#viewer-bottom').html( "<img src='/temp/galeria-"+id+".jpg' alt='' />" );
        $('#viewer-bottom').fadeIn('slow');
    });
}


function Bottom_Show(){
    document.getElementById("menu_bottom").style.clip="rect(0px,920px,166px,0px)";
}

function Bottom_Hide(){
    document.getElementById("menu_bottom").style.clip="rect(0px,920px,166px,0px)";
}

function Right_Show(){
    document.getElementById("menu_right").style.clip="rect(0px,291px,680px,0px)";
}

function Right_Hide(){
    document.getElementById("menu_right").style.clip="rect(0px,291px,680px,260px)";
}
