function zmieniajSerwis(){
    var $active = $('#serwisIMG .defaultIMG');
    var $next = ($('#serwisIMG .defaultIMG').next().length > 0) ? $('#serwisIMG .defaultIMG').next() : $('#serwisIMG img:first');
    $active.fadeOut(function(){
        $active.removeClass('defaultIMG');
        $next.fadeIn().addClass('defaultIMG');
    });
}
function zmieniajArgo(){
    var $active = $('#argoIMG .defaultIMG');
    var $next = ($('#argoIMG .defaultIMG').next().length > 0) ? $('#argoIMG .defaultIMG').next() : $('#argoIMG img:first');
    $active.fadeOut(function(){
        $active.removeClass('defaultIMG');
        $next.fadeIn().addClass('defaultIMG');
    });
}
function wyswietlPopup(){
    $("#popup").modal({overlayClose:true});
}
$(document).ready(function(){
    setInterval('zmieniajSerwis()', 5000);
    setInterval('zmieniajArgo()', 5000);

    $("#argoIMG").click(function(){
        window.location.href ="http://vitres.pl/argo.php";
    });

    $("#salonIMG").click(function(){
        window.location.href ="http://vitres.pl/salon.php";
    });

    $("#lynk").click(function(){
       wyswietlPopup();
    });

    $('#myGallery').galleryView({
        panel_width: 360,
        panel_height: 285,
        frame_width: 82,
        frame_height: 65,
        pointer_speed: 4
    });

});

$(window).load(function(){
//    if(window.location=="http://localhost/vitres/" || window.location=="http://localhost/vitres/jaguar.php" || window.location=="http://localhost/vitres/lr_rr.php"){
//        if((document.referrer!="http://localhost/vitres/")){
////            if(document.referrer!=window.location){
////                alert("róóóżny");
///            }
    if(window.location=="http://vitres.pl/" || window.location=="http://vitres.pl/jaguar.php" || window.location=="http://vitres.pl/lr_rr.php"){
        if((document.referrer!="http://vitres.pl/")){
            wyswietlPopup();
        }
    }
});
