/*
 * Vari�veis globais
 */
var scrollDisplacement = screen.width / 8;
var valor = 0;

function zoomIn() {
    //if (isIE() && getVersionIE() > 8 ) {
        if (document.body.style.zoom == '') {
            defaultZoom();
        }
        
        valor = parseInt(document.body.style.zoom);
        if (valor < 200) {
            valor += 25;
            document.body.style.zoom = valor + '%';
            
            centralizeLayout(scrollDisplacement, 0);
        }
  //  }
}

function zoomOut() {
   // if (isIE() && getVersionIE() > 8 ) {
        if (document.body.style.zoom == '') {
            defaultZoom();
        }
        
        valor = parseInt(document.body.style.zoom);
        if (valor > 100) {
            valor -= 25;
            document.body.style.zoom = valor + '%';
            
            centralizeLayout(-scrollDisplacement, 0);
        }
   // }
}

function defaultZoom() {
   // if (isIE() && getVersionIE() > 8 ) {
        document.body.style.zoom = '100%';
   // }
}

function centralizeLayout(posX, posY) {
    window.scrollBy(posX, posY);
}