var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();

var type = BrowserDetect.browser;
var version = BrowserDetect.version;
//alert(type + version);

if ((type == "Firefox") && (version == "3")) {
    var fontSize = "130pt";
} else if ((type == "Firefox") && (version == "2")) {
    var fontSize = "350pt";
} else if (type == "Explorer") {
    var fontSize = "170pt";
} else if (type == "Safari") {
    var fontSize = "350pt";
} else {
    var fontSize = "170pt";
}



///////////////////////////SIFR STYLE VARIABLES///////////////////////////
///////////////////////////VVVVVVVVVVVVVVVVVVVV///////////////////////////


var isonormd = {
  src: '/flash/isonormd.swf'
};

sIFR.activate(isonormd);

//HOME PAGE IMAGE LIST
sIFR.replace(isonormd, {
    selector: 'ul.homePageImageList',
    css: [
      '.sIFR-root li { font-weight: bold; text-decoration: none; color: #333333; }'
      ],
    wmode: 'transparent'
});

//TOP HEADER PRIMARY NAVBAR
sIFR.replace(isonormd, {
    selector: 'ul#headerNavbar li',
    css: [
      '.sIFR-root a { font-weight: bold; font-size: ' + fontSize + '; text-decoration: none; color: #778811; margin-bottom: -10px }',
      '.sIFR-root a:hover { color: #ff6600; }'
      ]
});

//TOP HEADER SECONDARY NAVBAR (SWITCHER)
sIFR.replace(isonormd, {
    selector: 'ul#headerSwitcher li',
    css: [
      '.sIFR-root { text-align:right; }',
      '.sIFR-root a { font-weight: bold; font-size: ' + fontSize + '; text-decoration: none; color: #ffffff; }',
      '.sIFR-root a:hover { color: #ffffff; text-decoration: underline; }'
      ],
    wmode: 'transparent'
});

//SEARCH BAR INTRO TEXT HEADER
sIFR.replace(isonormd, {
    selector: 'div#searchIntroText span.searchIntroTextHeader',
    css: [
      '.sIFR-root { font-weight: bold; font-size: 200%; text-decoration: none; color: #ffffff; }',
      ],
    wmode: 'transparent'
});

//SEARCH BAR INTRO TEXT TAGLINE
sIFR.replace(isonormd, {
    selector: 'div#searchIntroText span.searchIntroTextTagline',
    css: [
      '.sIFR-root { font-weight: bold; font-size: 120%; text-decoration: none; color: #ffffff; }',
      ],
    wmode: 'transparent'
});

//BODY CONTENT MAIN HEADING
sIFR.replace(isonormd, {
    selector: 'ul.bodyBoxHeader li.heading',
    css: [
      '.sIFR-root { text-align:right; }',
      '.sIFR-root a { font-weight: bold; font-size: 85%; text-decoration: none; color: #333333; }',
      '.sIFR-root a:hover { font-weight: bold; text-decoration: none; color: #CCCCCC; }'
      ],
    wmode: 'transparent'
});

//BODY CONTENT SUBHEADING LINKS
sIFR.replace(isonormd, {
    selector: 'ul.bodyBoxHeader li.link',
    css: [
      '.sIFR-root { text-align:right; }',
      '.sIFR-root a { font-weight: bold; text-decoration: none; color: #555555; }',
      '.sIFR-root a:hover { color: #ff6600; }'
      ],
    wmode: 'transparent'
});

//BODY CONTENT HEADING 4
sIFR.replace(isonormd, {
    selector: '.bodyBoxContent h4.heading',
    css: [
      '.sIFR-root a { font-weight: bold; font-size: 240%; text-decoration: none; color: #333333; }'
      ],
    wmode: 'transparent'
});

