var myLightWindow = null;
function initLightWindow() {
    myLightWindow = new lightwindow({
      	contentOffsetMargin: {
							width: 60
				},
				overlay: {
								opacity: 0.7,
                image: imagesPath + 'lightwindow/bg_lightwindow.png'
        },
        postProcess: function() {
          if($('floorplan') != null ) {
            new floorplan();
          }
        }
  });
}

