// JavaScript Document
function destaqueDinamico(lista, div, w, h){
	
	/*
		PARAMETROS
			lista 	- lista de swfs para randomizar
			div 	- div que vai receber o swf escolhido
			w		- width
			h 		- height
	*/
	//alert("Dinamico: "+lista[Math.floor(Math.random()*lista.length)]+" - DIV: "+div)
	
	var swf = lista[Math.floor(Math.random()*lista.length)];
	//alert(swf+" - "+Math.floor(Math.random()*lista.length));
	
	mostraFlash(div, "/media/en/swf/"+swf, w, h);
	
	
}