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

   },
   content: {
      dom: [
        {
            id:'Image1',
            type:'image',
            rect:[0,0,246,47],
            fill:['rgba(0,0,0,0)','images/pandemono1.jpg'],
        },
      ],
      symbolInstances: [
      ],
   },
   states: {
      "Base State": {
         "#Image1": [
            ["transform", "scaleX", '0.5'],
            ["transform", "scaleY", '0.5'],
            ["transform", "translateY", '82.41406px'],
            ["transform", "translateX", '26.96484px']
         ],
         "#stage": [
            ["color", "background-color", 'rgba(255,255,255,1)'],
            ["style", "height", '155px'],
            ["style", "width", '300px']
         ]
      }
   },
   actions: {

   },
   bindings: [

   ],
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 300,
         timeline: [
            { id: "eid1", tween: [ "transform", "#Image1", "translateX", '26.96484px', { valueTemplate: undefined, fromValue: '26.96484px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid2", tween: [ "transform", "#Image1", "translateY", '82.41406px', { valueTemplate: undefined, fromValue: '82.41406px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid6", tween: [ "transform", "#Image1", "scaleY", '1.17', { valueTemplate: undefined, fromValue: '0.5'}], position: 0, duration: 250, easing: "linear" },
            { id: "eid8", tween: [ "transform", "#Image1", "scaleY", '1', { valueTemplate: undefined, fromValue: '1.17'}], position: 250, duration: 50, easing: "linear" },
            { id: "eid5", tween: [ "transform", "#Image1", "scaleX", '1.17', { valueTemplate: undefined, fromValue: '0.5'}], position: 0, duration: 250, easing: "linear" },
            { id: "eid7", tween: [ "transform", "#Image1", "scaleX", '1', { valueTemplate: undefined, fromValue: '1.17'}], position: 250, duration: 50, easing: "linear" }]
      }
   },
}};

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

