   // JAVASCRIPT VARS
   // cache buster
   var cacheBuster = "?t=" + Date.parse(new Date());  
   
   // stage dimensions
   // if you define '100%' then the swf will have the browser dimensions
   var stageW = "623";//"100%";
   var stageH = "252";//"100%";
   
   // ATTRIBUTES
   var attributes = {};
   attributes.id = 'FlabellComponent';
   attributes.name = attributes.id;
      
   // PARAMS
   var params = {};
   params.bgcolor = "#ffffff";
   params.wmode = "transparent";
   
   /* FLASH VARS */
   var flashvars = {};    
   
   /// if commented / delete these lines, the component will take the stage dimensions defined 
   /// above in "JAVASCRIPT SECTIONS" section or those defined in the settings xml   
   flashvars.componentWidth = stageW;
   flashvars.componentHeight = stageH;
   
   /// path to the content folder(where the xml files, images or video are nested)
   /// if you want to use absolute paths(like "http://domain.com/images/....") then leave it empty("")
   
   flashvars.pathToFiles = "";
   flashvars.xmlPath = "/wp-content/themes/lowbits0/deploy/kenburns/xml/kenburns.xml";      
   
   /** EMBED THE SWF**/
   swfobject.embedSWF("/wp-content/themes/lowbits0/deploy/preview.swf"+cacheBuster, attributes.id, stageW, stageH, "9.0.124", "/wp-content/themes/lowbits0/deploy/js/expressInstall.swf", flashvars, params );

