// activate sIFR
sIFR.activate(fonts);

// replace HTML text with Flash text, specify font sizes/colors
sIFR.replace(fonts, {
  selector: '#nameplate',
  css: [
    '.sIFR-root {  color:#682A15; text-transform:uppercase; text-align:center; font-size:21px;}',    
    '.largeSerif { font-family: Trajan Pro; font-weight:bold; font-size:24px; leading: -12}',
    '.mediumSerif { font-family: Trajan Pro; font-weight:bold; font-size:18px; leading: -18}',
    '.mediumSans {font-family: Gill Sans Std; font-weight: normal; font-size: 14px; leading: -8}',
    '.smallSans {font-family: Gill Sans Std; font-weight: normal; font-size: 12px; leading: -6}',
    'a {color:#682A15; cursor:pointer; text-decoration: none}',
    'a:hover {color: #9F7966}',  
        
   ],
  wmode: 'transparent'
});

sIFR.replace(fonts, {
  selector: '.subNavTab',
  css: [
    '.sIFR-root { color:#ffffff; text-transform:uppercase; text-align:center; font-size:10px; leading: -1;}',    
    '.subNavTab a { font-family: Trajan Pro; font-weight:normal; color:#222222; text-decoration:none; }',    
    '.subNavTab a:hover {color:#A8A092;}'     
   ],
  wmode: 'transparent'
});

sIFR.replace(fonts, {
  selector: '.subNavTabSelected',
  css: [
    '.sIFR-root { color:#ffffff; text-transform:uppercase; text-align:center; font-size:10px; leading: -1;}',    
    '.subNavTab a { font-family: Trajan Pro; font-weight:normal; color:#FFFFFF; text-decoration:none; }',    
    '.subNavTab a:hover {color:#FFFFFF;}'     
   ],
  wmode: 'transparent'
});

