
function rotator(rotation_chance,panel_id){

	if(typeof(rotation_chance)=="object"){
	if(rotation_chance.length>0){
document.getElementById("panel-rotation-group"+panel_id+"-"+rotation_chance[Math.floor(Math.random() * rotation_chance.length)]).style.display="block";
	}}
	return false;
}



