function mgGetElement(id){
  if (document.getElementById) var obj = document.getElementById(id);	
  else if (document.all) var obj = document.all.id;
  return obj;
}
function mgStartSlideshow(){
  var obj = mgGetElement('mgImage0');
  fancyslideshow = true;
  myLightbox.start(obj);
}
