var rockwell = { src: 'http://www.originaljoes.ca/2009/fonts/rockwell.swf' };
sIFR.activate(rockwell);

// Now we can do the replacements. You can do as many as you like, but just
// as an example, we'll replace all `<h1>` elements with the Futura movie.
// 
// The first argument to `sIFR.replace` is the `futura` object we created earlier.
// The second argument is another object, on which you can specify a number of
// parameters or "keyword arguemnts". For the full list, see "Keyword arguments"
// under `replace(kwargs, mergeKwargs)` at 
// <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.
// 
// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
//
// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.
sIFR.replace(rockwell, {
  selector: 'h1.StoreName, .InsideText h1, .InsideText h1 a',
  css: '.sIFR-root{ font-size: 24px; text-transform: uppercase; margin: 0px 0px 0px 0px;  text-decoration:none; color:#000000; sLinkColor:#000000;}'
});

sIFR.replace(rockwell, {
  selector: 'h2.StoreLocation',
  css: '.sIFR-root {  color: #898989; font-size: 15px; text-transform: uppercase; line-height: 15px; }'
});

sIFR.replace(rockwell, {
  selector: 'h1.InsideTitle',
  css: '.sIFR-root { font-size: 24px; text-transform: uppercase; text-decoration:none; color:#000000; margin: 0px 0px 0px 0px; text-align:right;}'
});

sIFR.replace(rockwell, {
  selector: 'h2.InsideSubTitle',
  css: '.sIFR-root {  color: #898989; font-size: 14px; text-transform: uppercase; line-height: 14px; margin: 0; text-align:right; }'
});

sIFR.replace(rockwell, {
  selector: '.StoreHours',
  css: '.sIFR-root { font-size: 14px; text-transform: uppercase; }'
});


sIFR.replace(rockwell, {
  selector: '.SmallHours',
  css: '.sIFR-root {  color: #898989; font-size: 11px; text-transform: uppercase; text-align: right; }'
});

sIFR.replace(rockwell, {
  selector: '.Menu li',
  css: ['.sIFR-root {  color: #000000; font-size: 16px; text-transform: uppercase; text-align: center; }'
  		,'a {  color: #000000; text-decoration: none; }'
  		,'a:hover {  color: #BF2E1A; text-decoration: none; }'
  		]
});