// When true the dimensions of the Flash movie will fit exactly around the width and height of the text in the movie. 
// *Note:* this is as reported by Flash, so you might need to manually tune the dimensions.
sIFR.fitExactly = true;
//sIFR.tuneWidth = 100;

// Allow sIFR to run when loaded from the localhost domain. 
//You don't have to add localhost to the domains. 
sIFR.fromLocal = true;

// Specifies the window mode of the Flash movie. 
// When transparent the movie will be transparent. 
// When opaque elements can be displayed on top of the movie. 
// If transparency is not supported wmode will be set to opaque and the background color specified in the CSS will be used. 
// Therefore, it is important to always specify a background color!
sIFR.Wmode = "transparent";

var brushscriptmt = {
src: '../common/flash/brushscriptmt.swf'
};

var hightower = {
src: '../common/flash/hightower.swf'
};

sIFR.prefetch(brushscriptmt,hightower);
sIFR.activate(brushscriptmt,hightower);

sIFR.replace(brushscriptmt, {
selector: 'h1'
,css: [
'.sIFR-root { color: #dfe0e5; }'
,'a { color: #9b9ab3;text-decoration: none; }'
,'a:visited { color: #9b9ab3;text-decoration: none; }'
,'a:hover { color: #7ea042;text-decoration: none; }'
]
	, wmode: 'transparent'
});

sIFR.replace(hightower, {
selector: 'h2'
,css: [
'.sIFR-root { color: #7ea042; }'
,'a { color: #9B9AB3;text-decoration: none; }'
,'a:visited { color: #9b9ab3;text-decoration: none; }'
,'a:hover { color: #7ea042;text-decoration: none; }'
]
	, wmode: 'transparent'
});

sIFR.replace(hightower, {
selector: 'h3'
,css: [
'.sIFR-root { color: #7ea042; }'
,'a { color: #9B9AB3;text-decoration: none; }'
,'a:visited { color: #9b9ab3;text-decoration: none; }'
,'a:hover { color: #7ea042;text-decoration: none; }'
]
	, wmode: 'transparent'
});

sIFR.replace(hightower, {
selector: 'h4'
,css: [
'.sIFR-root { color: #9b9ab3; }'
,'a { color: #9B9AB3;text-decoration: none; }'
,'a:visited { color: #9b9ab3;text-decoration: none; }'
,'a:hover { color: #7ea042;text-decoration: none; }'
]
	, wmode: 'transparent'
});

sIFR.replace(brushscriptmt, {
selector: 'h5'
,css: [
'.sIFR-root { color: #2e3170; }'
,'a { color: #2e3170;text-decoration: none; }'
,'a:visited { color: #dfe0e5;text-decoration: none; }'
,'a:hover { color: #6f0509;text-decoration: none; }'
]
    ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#dfe0e5'
        ,strength: 2
      }
    }
	, wmode: 'transparent'
});
