//<[CDATA[
/**
 * Parasol
 *
 * @filename    activate.js
 * @author      Mish
 * @date        2007-01-01
 * @copyright   Liquid Light Digital Ltd.
 * @url         http://www.liquidlight.co.uk
 */

/**
 * Define website host
 */
var wwwHost = 'www.fosteringresources.co.uk';

/**
 * Define font
 */
var gs = {src: window.location.protocol + '//' + wwwHost + '/swf/gs.swf'};
//var gs = {src: '../swf/gs.swf'};

/**
 * Define common font settings
 */
var common = ['.sIFR-root { color: #f6821e; }',
			  'a { color: #006633; text-decoration: none; }',
			  'a:hover { color: #006633; text-decoration: underline; }'];

var common2 = ['.sIFR-root { color: #336699; }',
			  'a { color: #006633; text-decoration: none; }',
			  'a:hover { color: #003366; text-decoration: underline; }'];

var common3 = ['.sIFR-root { color: #666666; text-align: right; }',
			  'a { color: #006633; text-decoration: none; }',
			  'a:hover { color: #003366; text-decoration: underline; }'];

var common4= ['.sIFR-root { color: #999999; }',
			  'a { color: #006633; text-decoration: none; }',
			  'a:hover { color: #006633; text-decoration: underline; }'];

/**
 * Initialize sIFR
 */
sIFR.prefetch(gs);
sIFR.activate();

/**
 * Default configuration
 */
sIFR.replace(gs, {
	selector: 'h1.rendered',
	css: common
});

sIFR.replace(gs, {
	selector: 'h2.rendered',
	css: common
});

sIFR.replace(gs, {
	selector: 'h3.rendered',
	css: common
});

sIFR.replace(gs, {
	selector: 'h4.rendered',
	css: common2
});

sIFR.replace(gs, {
	selector: 'h5.rendered',
	css: common4
});



//]]>
