//-------------------
// imagens randomicas
//-------------------
/* imgRnd(imagem,quantidade,width,height,[alt e title]) */
function imgRnd(i,q,w,h,t){
	i=i.split('.');
	q=Math.floor(Math.random()*q);
	if(q<10){q='0'+q;};
	document.write('<img src="images/' + i[0] + q + '.' + i[1] + '" width="'+w+'" height="'+h+'" alt="'+t+'" title="'+t+'" />');
}
/* imgCssRnd(imagem,quantidade,div) */
function imgCssRnd(i,q,d){
	i=i.split('.');
	q=Math.floor(Math.random()*q);
	if(q<10){q='0'+q;};
	document.getElementById(d).style.backgroundImage = "url('" + 'images/' + i[0] + q + '.' + i[1] + "')";
}