/** 
 * Copyright (c) 2009-2010 Datenpark, Philip Iezzi
 * http://www.datenpark.ch/
 *
 * JQuery UI elements setup
 */

$(document).ready(function() {
    // jQuery Fancybox
    $("a.fancybox_group").fancybox(
    {
        'centerOnScroll'        : true,
        'scrolling'             : 'no',
        'transitionIn'		: 'none',
        'transitionOut'		: 'none',
        'titlePosition' 	: 'over',
        'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">(Bild ' +  (currentIndex + 1) + '/' + currentArray.length + ') ' + title + '</span>';
        }
    });

    $('a.fancybox').fancybox({
        'centerOnScroll'        : true,
        'scrolling'             : 'no',
        'transitionIn'		: 'none',
        'transitionOut'		: 'none',
        'titlePosition' 	: 'over',
        'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">' + title + '</span>';
        }
    });

});

