/**
 * 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,261,166],
            fill:['rgba(0,0,0,0)','images/logo.png'],
        },
      ],
      symbolInstances: [
      ],
   },
   states: {
      "Base State": {
         "#Image1": [
            ["transform", "translateX", '19px'],
            ["transform", "scaleY", '0.1'],
            ["style", "height", '166px'],
            ["style", "opacity", '0'],
            ["transform", "translateY", '6px'],
            ["transform", "scaleX", '0.1']
         ],
         "#stage": [
            ["color", "background-color", 'transparent'],
            ["style", "width", '303px'],
            ["style", "height", '181px'],
            ["style", "overflow", 'hidden']
         ]
      }
   },
   actions: {

   },
   bindings: [

   ],
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 3000,
         timeline: [
            { id: "eid2", tween: [ "style", "#stage", "height", '181px', { valueTemplate: undefined, fromValue: '181px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid4", tween: [ "transform", "#Image1", "translateX", '19px', { valueTemplate: undefined, fromValue: '19px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid1", tween: [ "style", "#stage", "width", '303px', { valueTemplate: undefined, fromValue: '303px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid3", tween: [ "color", "#stage", "background-color", 'transparent', { animationColorSpace: 'RGB', valueTemplate: undefined, fromValue: 'transparent'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid9", tween: [ "style", "#Image1", "opacity", '1', { valueTemplate: undefined, fromValue: '0'}], position: 0, duration: 3000, easing: "linear" },
            { id: "eid7", tween: [ "style", "#Image1", "height", '166px', { valueTemplate: undefined, fromValue: '166px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid5", tween: [ "transform", "#Image1", "translateY", '6px', { valueTemplate: undefined, fromValue: '6px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid15", tween: [ "transform", "#Image1", "scaleY", '1', { valueTemplate: undefined, fromValue: '0.1'}], position: 0, duration: 3000, easing: "linear" },
            { id: "eid14", tween: [ "transform", "#Image1", "scaleX", '1', { valueTemplate: undefined, fromValue: '0.1'}], position: 0, duration: 3000, easing: "linear" }]
      }
   },
}};

/**
 * Adobe Edge DOM Ready Event Handler
 */
$(window).ready(function() {
     $.Edge.initialize(symbols);
});
/**
 * Adobe Edge Timeline Launch
 */
$(window).load(function() {
    $.Edge.play();
});

