/*
// load when DOM ready
FastInit.addOnLoad( function(){ 
	
	if( !document.getElementById( 'kazzongPlayer' ) )
		return;
	
	var flashvars = {},
		params = {
			allowscriptaccess: "always",
			quality: "high",
			bgcolor: "#000000"
		},
		attributes = {
			name: "KazzongMusicPlayer"
		},
		wids = { 
			'/benutzer/globe': 17,
			'/benutzer/someone': 19,
			'/benutzer/flexes': 20 },
		wid;

	wid = wids[ location.pathname ] ? wids[ location.pathname ] : 17;

	swfobject.embedSWF(
		"http://www.kazzong.com/player/?wid=" + wid, // Flash to play
		"kazzongPlayer", // ID of Div to replace
		"470", // width of Flash
		"385", // height of Flash
		"9.0.0", // required Flash-Version
		"/assets/expressInstall.swf", // flash expressInstall Updater
		flashvars, params, attributes);
} );
*/