function replaceLogoWithFlash(){
	if(FlashDetect.installed){
		//Logoanimation nur auf Startseite oder Logoanimation testseite anzeigen
		winLocPath = window.location.pathname;
		//alert(winLocPath);
		if(winLocPath == "/" || winLocPath.indexOf("startseite") > -1 || winLocPath.indexOf("logoanimation") > -1){
			//if(! ($.browser.msie==true && $.browser.version == "7.0") ){
				//Flashlogo nur anzeigen wenn nicht IE und nicht Version 7.0
				replaceLogo();
			//}
		}
	}
}
	
function replaceLogo(){
	$('#logo').html("");
	$('#logo').flash({
	    src: 'fileadmin/templates/flash/headerLogo.swf',
	    width: 271,
	    height: 150,
	    wmode: 'transparent'
	});
	return false;
}
