// Image
$(document).ready(function() {
$("a.lightbox").fancybox({
  'transitionIn'  :  'elastic',
  'transitionOut'  :  'elastic',
  'speedIn'        :  300, 
  'speedOut'    :  300,
  'overlayShow': true
 });
 
// iFrame Content rückruf
$("a.lightbox-page").fancybox({
  'transitionIn'  :  'elastic',
  'transitionOut'  :  'elastic',
  'speedIn'        :  300, 
  'speedOut'    :  300, 
  'overlayShow'    :  false,
  'width'      :   440,
  'height'      :   320,
  'type': 'iframe'
 });
 
 // iFrame Content maps
$("a.lightbox-pagemap").fancybox({
  'transitionIn'  :  'elastic',
  'transitionOut'  :  'elastic',
  'speedIn'        :  300, 
  'speedOut'    :  300, 
  'overlayShow'    :  false,
  'width'      :   470,
  'height'      :   390,
  'type': 'iframe'
 });
  });
  
  



