+##def eventPanic():
+## logging.info("eventPanic(): switching around: "+uwscfg.slug_ids_panic)
+## lst1 = uwscfg.slug_ids_panic.split(" ")
+## lst2 = map(lambda e:[e,False], lst1)
+## for id in lst1:
+## switchPower(id,False)
+## for delay in map(lambda e: (40-e)/33.0,range(10,33)):
+## e = random.choice(lst2)
+## e[1]=not e[1]
+## switchPower(e[0],e[1])
+## time.sleep(delay)
+## random.shuffle(lst1)
+## for id in lst1:
+## switchPower(id,False)
+## time.sleep(1.2)
+## eventPresent()
+