
$(document).ready(function() {
    if ($fp.detectHighContrast()) { $("body").addClass("highContrast"); }

    $fp.cacheImage('/img/house_on.gif');

    var fps = 5;
    var speed = 25.0 / fps;
    var ratio = speed / 7.0;
    BgAnim.create('butterflyAnim', {fps:fps, alwaysOn:false},
                  [{
                      node:{id:'butterflyActor', x:70, y:58, width:58, height:47},
                      image:{off:'/img/butterfly0.gif', on:['/img/butterfly2.gif', '/img/butterfly3.gif', '/img/butterfly2.gif', '/img/butterfly1.gif'], cache:true},
                      motion:{type:'linear2d', speed:speed, minSpeed:4.0 * ratio, maxSpeed:10.0  * ratio, speedBy:0.0 * ratio, maxSpeedBy:2.0 * ratio, dSpeedBy:0.3 * ratio,
                                angle:$fp.rand(359), angleBy:0.0, maxAngleBy:24.0, dAngleBy:6.0}
                  }]);

    if (curPage === 'home') {
        BgAnim.create('gardenSunAnim', {fps:2.7, speedVariance:75, alwaysOn:false},
                      [{
                          node:{id:'gardenSunActor', x:55, y:50, width:110, height:100},
                          image:{off:'/img/sun00.png', on:['/img/sun01.png', '/img/sun02.png', '/img/sun03.png', '/img/sun04.png'], order:'random', cache:true}
                      }]);
    }
});


