jQuery(document).ready(function() {
		
        $("a.ballonlink").fancybox({
                'scrolling'     :       'no',
                'width'         :       720,
                'height'        :       '80%',
                'transitionIn'  :       'elastic',
                'transitionOut' :       'elastic',
		'centerOnScroll':	'true',
                'type'          :       'iframe'
        });

        $("a[href$=.jpg]").fancybox({
                'titlePosition' :       'inside',
                'type'          :       'image'
        });
	
// Beispiele fuer Fotoslides

/*  function FormatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div>' + (currentIndex + 1) + ' / ' + currentArray.length + ' ' + (title && title.length ? '<b>' + title + '</b>' : '' ) + '</div>';
  }
*/

/* $(".news101001").click(function() {
    $.fancybox([
      { 'href'        : '../../../fotos/00_esperanza/newsticker/101001a.jpg',
        'title'        : 'Miela, unsere Honigfarbene'
      },
      '../../../fotos/00_esperanza/newsticker/101001b.jpg',
      '../../../fotos/00_esperanza/newsticker/101001c.jpg'
    ], {
      'titlePosition' :       'inside',
      'type'          :       'image'
    });
  });
*/

// Beispiele von Fancybox
	
/*	$("#various5").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
		
	$("#tip3").fancybox({
	    'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'titlePosition'	: 'over',
		'onComplete'	: function() {
			$("#fancybox-wrap").hover(function() {
				$("#fancybox-title").show();
			}, function() {
				$("#fancybox-title").hide();
			});
		}
	});
*/

});

