﻿function turnwrapper() {
    /*---get element id's to expand---*/
    var turnW = document.getElementById("turn_wrapper");
    var turnO = document.getElementById("turn_object");
    var size = 80;
    
    var i = 0;
    /*---expand in increments of 4---*/
    for (i = 0; i < 80; i++) {
        size = size + 4;
        turnW.style.width = size + "px";
        turnW.style.height = size + "px";
        turnO.style.width = size + "px";
        turnO.style.height = size + "px";
    }

}

function closeflap() {


    var turnW = document.getElementById("turn_wrapper");
    var turnO = document.getElementById("turn_object");

    turnW.style.width = "80px";
    turnW.style.height = "80px";
    turnO.style.width = "80px";
    turnO.style.height = "80px";

}

function openLocal() 
{

    window.open("http://www.bundledservice.com/infoGIANT/Default.aspx");
}
