var univers = {
  src: '/flash/sifr.swf'
};

//tell sIFR to go load the movie file. This is needed to stop browsers from loading the file time and time again:
// sIFR.prefetch(univers);
//If you have specified multiple Flash files, you can pre-fetch them all at once:
// sIFR.prefetch(cochin, rockwell, vandenkeere);
//Then activate sIFR:
// sIFR.activate();
//Important: Do not wrap the call to sIFR.activate() in an onload or ondomready event as it will most likely break in ie6/7.
//Note: Starting with revision 209 you can pass the movies to be pre-fetched directly to the activate() method:
sIFR.activate(univers);

//And finally we can begin replacing the elements. Here's the code you need:

sIFR.replace(univers, {
  selector: 'h1.24'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:24px;}'
    ]
});
sIFR.replace(univers, {
  selector: 'h1.22'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:22px;}'
    ]
});
sIFR.replace(univers, {
  selector: 'h1.20'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:20px;}'
    ]
});
sIFR.replace(univers, {
  selector: 'h1.18'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:18px;}'
    ]
});
sIFR.replace(univers, {
  selector: 'h1.16'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:16px;}'
    ]
});
sIFR.replace(univers, {
  selector: 'h1.14'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:14px;}'
    ]
});
sIFR.replace(univers, {
  selector: 'h1.12'
     ,css: [
      '.sIFR-root {color: #57507F; font-size:12px;}'
    ]
});


sIFR.replace(univers, {
  selector: 'h1'
     ,css: [
      '.sIFR-root {color: #57507F;}'
    ]
});
