

///////////////////////////////////////////////////////////////
//
// Costimizing the LIGHTBOX GONE WILD with additional functions
// 
// v0.0.1 
// 17.08.2007
//
///////////////////////////////////////////////////////////////


//-------------------------------------------------------------
// Flip Cover-Image in lightbox
function Cover() {
  this.front_cover_id = '';
  this.back_cover_id = '';
};

Cover.prototype.exchange = function() {
  if ($(this.front_cover_id).visible()) {
    $(this.front_cover_id).hide();
    $(this.back_cover_id).show();
  } else {
    $(this.front_cover_id).show();
    $(this.back_cover_id).hide();
  }
};