/*i = 0;*/
folder = 'swf/homeanimations/';
flash1 = '<embed width="328" height="385" flashvars="swfpath=SWF/" wmode="transparent" quality="high" bgcolor="#FFFFFF" name="STAATSTHEATER DARMSTADT" id="STAATSTHEATER DARMSTADT" style="" src="';

flash2 = '" type="application/x-shockwave-flash">';



$(document).ready(function(){
	/*$('#flashcontent').append(flash);	*/
	
	a = $('#swfList li').length;
    numPosibilidades = a - 1;
    aleat = Math.random() * numPosibilidades;
    aleat = Math.round(aleat);
    i = aleat;
	b = folder+$('#swfList li').eq(i).html();
	/*$('#flashcontent embed').attr('src', b);*/
	flash3 = flash1 + b + flash2;
	$('#flashcontent').append(flash3);	
	
	
	
});

	
function swfLoader(){
	
    numPosibilidades = a - 1;
    aleat = Math.random() * numPosibilidades;
    aleat = Math.round(aleat);
    i = aleat;	
	b = folder+$('#swfList li').eq(i).html();
	flash3 = flash1 + b + flash2;
	$('#flashcontent').empty().append(flash3);
	/*$('#flashcontent embed').attr('src', b);*/
/*	alert(i);*/
}
