var franklin = {
    src: 'swf/franklin.swf'
    
};

sIFR.prefetch(franklin);
sIFR.delayCSS  = true;
sIFR.debugMode  = true;
//sIFR.domains = ['*.drummer-models.com'] // Don't check for domains in this demo
sIFR.fromLocal = true;
sIFR.activate(franklin);
sIFR.replace(franklin, {
    selector: 'h2.small'
        ,wmode: 'transparent'
    ,css: [
      '.sIFR-root { color: #000000; font-weight: normal; leading:0; font-size: 36; letter-spacing: 0; margin:0 }'
      ,'a { color: #79b51c; text-decoration: underline; }'
      ,'a:link { color: #79b51c; }'
      ,'a:hover { color: #79b51c; text-decoration: none; }'
    ]
  });
sIFR.replace(franklin, {
    selector: 'h2.big'
        ,wmode: 'transparent'
    ,css: [
      '.sIFR-root { color: #000000; font-weight: normal; leading:-10; font-size: 48; letter-spacing: 0;margin-top:-10px; }'
      ,'a { color: #79b51c; text-decoration: underline; }'
      ,'a:link { color: #79b51c; }'
      ,'a:hover { color: #79b51c; text-decoration: none; }'
    ]
  });

