/**
 * Adobe Edge: symbol definitions
 */
(function($, Edge, compId){
var symbols = {
"stage": {
   version: "0.1.3",
   baseState: "Base State",
   initialState: "Base State",
   content: {
      dom: [
        {
            id:'dllogotransparant',
            className:'stage_dllogotransparant_id',
            type:'image',
            tag:'div',
            rect:[0,0,100,40],
            fill:['rgba(0,0,0,0)','images/dllogotransparant.gif']
        }],
      symbolInstances: [
      ]
   },
   states: {
      "Base State": {
         "${_stage}": [
            ["style", "height", '50px'],
            ["color", "background-color", 'rgba(194,183,46,0)'],
            ["style", "width", '110px']
         ],
         "${_dllogotransparant}": [
            ["transform", "translateX", '-100px'],
            ["transform", "translateY", '5px']
         ]
      }
   },
   timelines: {
      "Default Timeline": {
         fromState: "Base State",
         toState: "",
         duration: 2000,
         labels: {

         },
         timeline: [
            { id: "eid17", tween: [ "style", "${_stage}", "width", '110px', { fromValue: '110px'}], position: 2000, duration: 0 },
            { id: "eid14", tween: [ "transform", "${_dllogotransparant}", "translateX", '5px', { fromValue: '-100px'}], position: 0, duration: 2000 }]
      }
   }
}};

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-10723103");

