function randomize_show(element) { 		var kids = $(element).immediateDescendants();  		kids.each(function(elem) { elem.hide(); });  		var rand = Math.floor(Math.random()*kids.length);  		kids[rand].show();		}		['rotation'].each(function(item) { randomize_show(item); });