/* Steuernde Angaben für Java-Script Element auf www.worldscoutmaboree.de */
jQuery.noConflict();
jQuery(document).ready(function() {
/* ------------
FancyBox Plugin  
------------ */  
  jQuery('.clickenlarge').fancybox({
    'overlayShow'  : true,
    'overlayOpacity': 0.6,
    'titlePosition'     : 'inside',
    'zoomSpeedIn'  : 600,
    'zoomSpeedOut'  : 500,
    'easingIn'    : 'easeOutBack',
    'easingOut'    : 'easeInBack',
    'padding'    : 10,
    'cyclic'    : true,
    'centerOnScroll': true,
    'titleFromAlt': true 
  });

  jQuery(".jamboree-song a").click(function() {
  jQuery.fancybox({
      'padding'    : 0,
      'autoScale'    : false,
      'transitionIn'  : 'none',
      'transitionOut'  : 'none',
      'title'      : this.title,
      'width'    : 680,
      'height'    : 495,
      'href'      : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
      'type'      : 'swf',
      'swf'      : {
            'wmode'    : 'transparent',
            'allowfullscreen'  : 'true'
            }
    });

  return false;
});
  
  
}); //document ready end
