function toogle(id)
{
  object = document.getElementById(id);
  pointer = document.getElementById('pointer_'+id);
  if (object.style.display == "block")
  {
    object.style.display = "none";
    pointer.src = '/images/plus.png';
  }
  else
  {
    object.style.display = "block";
    pointer.src = '/images/minus.png';
  }
}

// Automagically load Lightbox on Page Load - by Bramus! (http://www.bram.us/)
// Code modded from http://www.huddletogether.com/forum/comments.php?DiscussionID=1269&page=1#Item_0
function autoFireLightbox() {
	//Check if location.hash matches a lightbox-anchor. If so, trigger popup of image.
	setTimeout(function() {
		if(document.location.hash && $(document.location.hash.substr(1)).rel.indexOf('lightbox')!=-1) {
			myLightbox.start($(document.location.hash.substr(1)));
		}},
		250
	);
	setTimeout("myLightbox.end();",10000);
}
Event.observe(window, 'load', autoFireLightbox, false);
