function startflash() {
	var playerVersion = swfobject.getFlashPlayerVersion(); 

	if(playerVersion.major<10) {
		$("#startflash .noflash a").hover(function() {
			if($(this).attr("class")!="explain") {
				$("#startflash .noflash a").hide();
				$("#startflash .noflash a.explain").show();
				$(this).show();
				$("#startflash .noflash .detail").css("background-image", "url(/_img/start/noflash/"+$(this).attr("class")+".jpg)").fadeIn("slow");
			}
		}, function() {
			if($(this).attr("class")!="explain") {
				$("#startflash .noflash .detail").fadeOut("fast", function() {
					$("#startflash .noflash a").show();
					$(this).css("background-image", "none");
				});
			}
		});
	} else {
		var h = 460;
		var w = 1000;
		holterlanguage= $("#language").html();

		var flashvars = {
			host: $("#host").html(),
			videoURL:'00_aufbau_v5.flv',
			videoHeight:h,
			videoWidth:w,
			language: holterlanguage,
			xml: 'info.xml'
		};
		var params = {
			wmode: 'transparent'
		};

		swfobject.embedSWF("_flash/swf.php", "startflash", w, h, "10.1", "_flash/swfobject/expressInstall.swf", flashvars, params);
	}
}
