window.onload = function(){

	$('body').each( function(i){
	    var zahl = 1 + 2*(Math.random());
        zahl = Math.round(zahl);
		$(this).attr({ id: 'home0'+ zahl });
        // $(this).attr({ id: 'home03' });

		$('#flashhome').flash(
		{ src: '/swf/home0' + zahl + '.swf', width: '100%', height: '100%', wmode: "transparent", bgcolor: "#000000" }, 
		{ expressInstall: true, update: false },
		function(htmlOptions) { 
			this.innerHTML = '';
			$(this).prepend($.fn.flash.transform(htmlOptions));
			}
		);

	}); 
};