/*
var timeOut1= 998;
var timeOut2= 999;

function flip () {
	return; // XXX FIXME
  timeOut1 = setTimeout ('document.images.logo.src = \'http://www.redrum.fi/wp-content/themes/default/images/logo_flip.gif\'', 2000); 
  timeOut2 =setTimeout ('document.images.logo.src = \'http://www.redrum.fi/wp-content/themes/default/images/logo.gif\'', 2300);
}

function clearFlip () {
  clearTimeout (timeOut1);
  clearTimeout (timeOut2);
}
*/

var nowOpen = -1;

function showMore (id) {
  if (document.getElementById('more' + id).style.display != 'block') { 
    document.getElementById('more' + id).style.display = 'block';
    if (nowOpen > -1) document.getElementById('more' + nowOpen).style.display = 'none';
    nowOpen = id;
  }
  else {
    document.getElementById('more' + id).style.display = 'none';  
    nowOpen = -1
  }
}