//$(window).load(function(){
//    click
//});
//$(document).ready(function(){ location.href = "#home";});
$(document).ready(function(){ $.autoscroll.init({step: 200}); });

function modal(){
        //alert('alerta');

        //preventDefault();

        var id = $('#dialog');

        var maskHeight = $(document).height();
        var maskWidth = $(document).width();

        $('#mask').css({'width':maskWidth,'height':maskHeight});

        $('#mask').fadeIn(1000);
        $('#mask').fadeTo("slow",0.8);

        //Get the window height and width
        var winH = $(window).height();
        var winW = $(window).width();

        $("#dialog").css('top', '800px');
        $("#dialog").css('left', '1100px');

        $("#dialog").fadeIn(2000);


        $('.window .close').click(function (e) {
        e.preventDefault();

        $('#mask').hide();
        $('.window').hide();
    });

    $('#mask').click(function () {
        $(this).hide();
        $('.window').hide();
    });

}

$(document).ready(function(){

    //$('#aslojas').jScrollPane();
    modal();

    $("#vitrines .vits_img").hover(
        function() {
            var id = $(this).attr('rel');

            $("#vitrines #vit_img_dest").attr('src', 'imagens/vitrine_grande'+id+'.jpg');

    });



});

function abrirPag(valor){

    var url = valor;

    xmlRequest.onreadystatechange = mudancaEstado;
    xmlRequest.open("GET",url,true);
    xmlRequest.send(null);

    if (xmlRequest.readyState == 1) {
        document.getElementById("dinamico").innerHTML = "<img src='imagens/loader.gif'>";
    }

    return url;
}

function mudancaEstado(){
    if (xmlRequest.readyState == 4){
        document.getElementById("dinamico").innerHTML = xmlRequest.responseText;
    }
}
