/**
 * Adobe Edge: symbol definitions
 */
(function($, Edge, compId){
var symbols = {
"stage": {
   version: "0.1.3",
   baseState: "Base State",
   initialState: "Base State",
   content: {
      dom: [
        {
            id:'headerBG',
            type:'image',
            tag:'div',
            rect:[0,0,1024,108],
            fill:['rgba(0,0,0,0)','images/headerBG.jpg']
        },
        {
            id:'nameBig',
            type:'image',
            tag:'div',
            rect:[0,0,1024,108],
            fill:['rgba(0,0,0,0)','images/nameBig.png']
        }],
      symbolInstances: [
      ]
   },
   states: {
      "Base State": {
         "${_stage}": [
            ["color", "background-color", 'rgba(0,0,0,1)'],
            ["style", "width", '1024px'],
            ["style", "height", '108px'],
            ["style", "overflow", 'hidden']
         ],
         "${_nameBig}": [
            ["transform", "scaleX", '1.34'],
            ["style", "opacity", '0'],
            ["transform", "scaleY", '1.34']
         ]
      }
   },
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 1000,
         labels: {

         },
         timeline: [
            { id: "eid14", tween: [ "style", "${_nameBig}", "opacity", '1', { fromValue: '0'}], position: 0, duration: 1000 },
            { id: "eid1", tween: [ "style", "${_stage}", "width", '1024px', { fromValue: '1024px'}], position: 0, duration: 0 },
            { id: "eid12", tween: [ "transform", "${_nameBig}", "scaleY", '1', { fromValue: '1.34'}], position: 0, duration: 1000 },
            { id: "eid2", tween: [ "style", "${_stage}", "height", '108px', { fromValue: '108px'}], position: 0, duration: 0 },
            { id: "eid10", tween: [ "transform", "${_nameBig}", "scaleX", '1', { fromValue: '1.34'}], position: 0, duration: 1000 }]
      }
   }
}};

var comp;
Edge.registerCompositionDefn(compId, symbols);

/**
 * Adobe Edge DOM Ready Event Handler
 */
$(window).ready(function() {
     comp = new Edge.Composition(compId, {stage: "." + compId}, {});
	   /**
 * Adobe Edge Timeline Launch
 */
     comp.ready(function() {
         comp.play();
     });
});
})(jQuery, jQuery.Edge, "EDGE-18978971");

