threeSixty = {
    init: function() {
        this._vr = new AC.VR("viewer", "../html5_test/images/DSC_0###-01.jpg", 72, {
            invert: true
        })
    },
    didShow: function() {
        this.init()
    },
    willHide: function() {
        recycleObjectValueForKey(this, "_vr")
    },
    shouldCache: function() {
        return false
    }
};
if (!window.isLoaded) {
    window.addEventListener("load",
    function() {
        threeSixty.init()
    },
    false)
};
