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

   },
   content: {
      dom: [
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
      ],
      symbolInstances: [
      ],
   },
   states: {
      "Base State": {
         "#container": [
            ["transform", "scaleX", '0.01'],
            ["style", "opacity", '0'],
            ["transform", "scaleY", '0.01']
         ]
      }
   },
   actions: {

   },
   bindings: [

   ],
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 3000,
         timeline: [
            { id: "eid9", tween: [ "transform", "#container", "scaleX", '1', { valueTemplate: undefined, fromValue: '0.01'}], position: 0, duration: 3000, easing: "linear" },
            { id: "eid10", tween: [ "transform", "#container", "scaleY", '1', { valueTemplate: undefined, fromValue: '0.01'}], position: 0, duration: 3000, easing: "linear" },
            { id: "eid4", tween: [ "style", "#container", "opacity", '1', { valueTemplate: undefined, fromValue: '0'}], position: 0, duration: 3000, easing: "linear" }]
      }
   }
}};

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

