/*
LIST OF ELEMENTS:
sIFR.replaceElement("h1", "some_font_name.swf", "#003366", null1, null2, null3, 0a, 0b, 0c, 0d);

DEFINITION OF ELEMENTS:
- "h1" is the element to be modified (in this case, a headline)
- "some_font_name.swf" is the swf file containing the replacement font
- "#003366" is the TEXT COLOR in which the replaced font will appear
- "null1" is the COLOR of the text if it is a link
- "null2" is the HOVER COLOR of the text if it is a link
- "null3" is the BACKGROUND COLOR of the sIFR replacement area
- "0a" is the TOP-side padding of the sIFR element
- "0b" is the RIGHT-side padding of the sIFR element
- "0c" is the BOTTOM-side padding of the sIFR element
- "0d" is the LEFT-side padding of the sIFR element
*/






//FlgTNSWRegionColourSet is declared in general.js file 
//FlgTNSWRegionColourSet is set in region.js files
//FlgTNSWRegionColourSet is checked in sifr_mother.js

// sIFRFontLocation is declared in general.js file
// sIFRFontLocation is set in general_xx.js  (xx = Country extension)

// if region colours are NOT set then apply default colours

	sIFRColour01 = '#252954'
	sIFRColour02 = '#999999'
	sIFRColour03 = '#ff6801'
	var FlgAllowSIFRFont = true;
	var sIFRFontLocation = 'http://www.visitnsw.com/TNSW/Templates/bliss.swf';



if(typeof sIFR == "function"){
// This is the older, ordered syntax
	sIFR.replaceElement("h1", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("h2", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	//sIFR.replaceElement("h3", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement(".form-heading h2", sIFRFontLocation, sIFRColour01, null, null, sIFRColour02, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.feature-set-one h2", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.feature-set-home h2", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement(".highlight-box-promo-one h2",sIFRFontLocation, sIFRColour01, null, null, "#FFFFFF", 0, 0, 0, 0, null);
	sIFR.replaceElement(".highlight-box-promo-two h2", sIFRFontLocation, sIFRColour01, null, null, "#FFFFFF", 0, 0, 0, 0, null);
	sIFR.replaceElement(".visitor-info h2", sIFRFontLocation, sIFRColour01, null, null, "#FFFFFF", 0, 0, 0, 0, null);
	sIFR.replaceElement(".visitor-info-sydney h2", sIFRFontLocation, sIFRColour01, null, null, "#FFFFFF", 0, 0, 0, 0, null);
	sIFR.replaceElement("div.sydney div.sydney-intro p", sIFRFontLocation, sIFRColour03, null, null, "#FFFFFF", 0, 0, 0, 0, null);

	sIFR.replaceElement("form div.highlight-form div.form-heading h2", sIFRFontLocation, "#f1f1f1", null, null, "#999999", 0, 0, 0, 0, null);
	sIFR.replaceElement("div.search h2", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.editorial h2", sIFRFontLocation, sIFRColour01, null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.editorial-intro p", sIFRFontLocation, "#666666", null, null, null, 0, 0, 0, 0, null);
    sIFR.replaceElement("table.generated-form th",sIFRFontLocation, "#003366", null, null, "#99CCFF", 0, 0, 0, 0, null);
	
	/*
	sIFR.replaceElement("h1", sIFRFontLocation, "#ff6801", null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.feature-set-one h2", sIFRFontLocation, "#ff6801", null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.feature-set-home h2", sIFRFontLocation, "#ff6801", null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("form div.highlight-form div.form-heading h2", sIFRFontLocation, "#f1f1f1", null, null, "#999999", 0, 0, 0, 0, null);
	sIFR.replaceElement("div.search h2", sIFRFontLocation, "#ff6600", null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.editorial h2", sIFRFontLocation, "#ff6600", null, null, null, 0, 0, 0, 0, null);
	sIFR.replaceElement("div.editorial-intro p", sIFRFontLocation, "#666666", null, null, null, 0, 0, 0, 0, null);
    sIFR.replaceElement("table.generated-form th", sIFRFontLocation, "#003366", null, null, "#99CCFF", 0, 0, 0, 0, null);
	*/
	
}
