var IE = null;
if(window.navigator.appName == "Microsoft Internet Explorer") {
	var css;
	/* IE 5 & IE 6 */
	if(window.navigator.appVersion.match(/MSIE 6/g) || window.navigator.appVersion.match(/MSIE 5/g)) {
		css = "6";
		
	/* IE 7 */
	} else if(window.navigator.appVersion.match(/MSIE 7/g)) {
		// IE7 - Quirks
		if(document.compatMode == "BackCompat" && document.documentMode == "5") {
			css = "7_Q";
			alert("Die Surfen derzeit mit dem Internet Explorer 7 der im Quirks-Modus läuft.\nDa in diesem Modus die Navigation nicht funktioniert, wechseln Sie bitte den Browser.");
		// IE7 - IE7
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "7") {
			css = "7_7";
		// IE7 - IE8
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "8") {
			css = "7_8";
		// IE7 - IE9
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "9") {
			css = "7_9";
		}
	
	/* IE 8 */
	} else if(window.navigator.appVersion.match(/MSIE 8/g)) {
		// IE8 - Quirks
		if(document.compatMode == "BackCompat" && document.documentMode == "5") {
			css = "8_Q";
			alert("Die Surfen derzeit mit dem Internet Explorer 8 der im Quirks-Modus läuft.\nDa in diesem Modus die Navigation nicht funktioniert, wechseln Sie bitte den Browser.");
		// IE8 - IE7
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "7") {
			css = "8_7";
		// IE8 - IE8
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "8") {
			css = "8_8";
		// IE8 - IE9
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "9") {
			css = "8_9";
		}
	
	/* IE 9 */
	} else if(window.navigator.appVersion.match(/MSIE 9/g)) {
		// IE8 - Quirks
		if(document.compatMode == "BackCompat" && document.documentMode == "5") {
			css = "9_Q";
			alert("Die Surfen derzeit mit dem Internet Explorer 9 der im Quirks-Modus läuft.\nDa in diesem Modus die Navigation nicht funktioniert, wechseln Sie bitte den Browser.");
		// IE8 - IE7
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "7") {
			css = "9_7";
		// IE8 - IE8
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "8") {
			css = "9_8";
		// IE8 - IE9
		} else if(document.compatMode == "CSS1Compat" && document.documentMode == "9") {
			css = "9_9";
		}
	}
	document.write('<link rel="stylesheet" href="wp-content/themes/oettinger/ie/' + css + '.css" type="text/css" media="screen" />');
}
