/**
 * Adobe Helium: symbol definitions
 */
window.symbols = {
"stage": {
   version: "0.1",
   baseState: "Base State",
   initialState: "Base State",
   parameters: {

   },
   content: {
      dom: [
      ],
      symbolInstances: [
      ],
   },
   states: {
      "Base State": {
         "#container": [
            ["transform", "translateX", '0']
         ],
         "#header": [
            ["transform", "scaleX", '1'],
            ["transform", "scaleY", '1'],
            ["transform", "translateY", '-321px'],
            ["transform", "translateX", '0px']
         ],
         "#footer": [
            ["transform", "translateY", '-134px'],
            ["transform", "translateX", '0']
         ]
      }
   },
   actions: {

   },
   bindings: [

   ],
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 5750,
         timeline: [
            { id: "eid12", tween: [ "transform", "#footer", "translateY", '0px', { valueTemplate: undefined, fromValue: '-134px'}], position: 5000, duration: 750, easing: "easeOutBounce" },
            { id: "eid39", tween: [ "transform", "#header", "translateY", '0px', { valueTemplate: undefined, fromValue: '-335px'}], position: 3000, duration: 750, easing: "easeOutBack" },
            { id: "eid5", tween: [ "transform", "#content", "translateX", '0', { valueTemplate: undefined, fromValue: '0'}], position: 5750, duration: 0, easing: "linear" },
            { id: "eid6", tween: [ "transform", "#content", "translateY", '0', { valueTemplate: undefined, fromValue: '0'}], position: 5750, duration: 0, easing: "linear" }]
      }
   },
}};

/**
 * Adobe Edge DOM Ready Event Handler
 */
$(window).ready(function() {
     $.Edge.initialize(symbols);
});
/**
 * Adobe Edge Timeline Launch
 */
$(window).load(function() {
    $.Edge.play();
});

