/**
 * Adobe Helium: symbol definitions
 */
window.symbols = {
"stage": {
   version: "0.1",
   baseState: "Base State",
   initialState: "Base State",
   parameters: {

   },
   content: {
      dom: [
        {
            id:'Text1',
            type:'text',
            rect:[207,191,0,0],
            text:"Pat O'Reilly",
            font:["Arial Black, Gadget, sans-serif",[24,""],"rgba(0,0,0,1)","normal","none",""],
        },
      ],
      symbolInstances: [
      ],
   },
   states: {
      "Base State": {
         "#Text1": [
            ["transform", "translateX", '-93px'],
            ["color", "color", 'rgba(255,255,255,1.00)'],
            ["style", "opacity", '0.023529411764706'],
            ["transform", "translateY", '-27px'],
            ["style", "font-size", '48px']
         ],
         "#stage": [
            ["color", "background-color", 'rgba(0,0,0,1.00)'],
            ["style", "height", '400px'],
            ["style", "width", '550px']
         ]
      }
   },
   actions: {

   },
   bindings: [

   ],
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 2000,
         timeline: [
            { id: "eid8", tween: [ "transform", "#Text1", "translateX", '-93px', { valueTemplate: undefined, fromValue: '-93px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid2", tween: [ "color", "#stage", "background-color", 'rgba(0,0,0,1.00)', { animationColorSpace: 'RGB', valueTemplate: undefined, fromValue: 'rgba(0,0,0,1.00)'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid10", tween: [ "style", "#Text1", "opacity", '1', { valueTemplate: undefined, fromValue: '0.023529411764706'}], position: 0, duration: 2000, easing: "linear" },
            { id: "eid1", tween: [ "color", "#Text1", "color", 'rgba(255,255,255,1.00)', { animationColorSpace: 'RGB', valueTemplate: undefined, fromValue: 'rgba(255,255,255,1.00)'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid3", tween: [ "style", "#Text1", "font-size", '48px', { valueTemplate: undefined, fromValue: '48px'}], position: 0, duration: 0, easing: "linear" },
            { id: "eid9", tween: [ "transform", "#Text1", "translateY", '-27px', { valueTemplate: undefined, fromValue: '-27px'}], position: 0, 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();
});

