// JavaScript Document

function lupenObject(bildUrl,breite,hoehe,bildUrlBig,breiteBig,hoeheBig,divId){
   this.bildUrl = bildUrl;
   this.breite = (breite!=null)?breite:160;
   this.hoehe  = (hoehe !=null)?hoehe:120;
   this.bildUrlBig = bildUrlBig;
   this.breiteBig  = (breiteBig!=null)?breiteBig:400;
   this.hoeheBig   = (hoeheBig !=null)?hoeheBig:300;
   this.divId = divId;
   this.pId = divId + 'After';
   this.isBig = false;
   this.self = this;
}
