function rotate_ad(ad_arr)
{
	return ad_arr[ Math.floor(Math.random()* ad_arr.length) ].replace(/&lt;/g,"<").replace(/&gt;/g,">").replace(/&qut;/g,"'").replace(/&nl;/g,"\n");
}
