NS=(document.layers)?1:0;
IE=(document.all)?1:0;
divs=new Array('text','foralex','forever','abzats','salisbury','tapki','kapusta','memory','crush','mlz','life','serg','my_hero','loved_him','angel','still','oldlady','nero21','outside','entomolog','destroy','creation','fire','tommy','oneday','amazon','final','new','diane','matan','rise','love');

function show(divname) {
 for (i=0; i<divs.length; i++) {
  if (NS) {top.document.layers[divs[i]].visibility="hide"};
  if (IE) {top.document.all[divs[i]].style.visibility="hidden"};
 };
 if (divname!='') {
  if (NS) {top.document.layers[divname].visibility="show"};
  if (IE) {top.document.all[divname].style.visibility="visible"};
 };
}