var flash = false;
function flashDetection() {
	if ((navigator.plugins) && (navigator.plugins.length > 0)) {
		for(var i=0; i<navigator.plugins.length; i++) {
			if(navigator.plugins[i].name.indexOf('Shockwave Flash') != -1) {
				return true;
			}
		}
	} else if (typeof(ActiveXObject) == "function") {
		for(var i = 8; i < 10; i++) {
			try {
				if(typeof(new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + i)) == "object") {
						return true;
				}
			} catch(error) {
				
			} //ende try/catch
		} //ende for
	} else {
	  return false;
	}
}

flash = flashDetection();

$(document).ready(function() {
    if (flash) {
        $('div#flasher').html('<object id="upload/Startseite/bilderwechsel" width="950" height="650" align="middle" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="sameDomain" name="allowScriptAccess"/><param name="movie" value="upload/Startseite/bilderwechsel.swf"/><param name="src" value="upload/Startseite/bilderwechsel.swf"/><param name="quality" value="high"/><param name="wmode" value="transparent"/><embed width="950" height="650" align="middle" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="sameDomain" name="bilderwechsel" quality="high" wmode="transparent"  src="upload/Startseite/bilderwechsel.swf"></embed></object>');
    } else {
        $('div#flasher').html('<img src="http://www.hbussmann.com/core/cms/upload/Startseite/start_bg.jpg" alt="Flashersatz" border="0" />');
    }
});
