$(document).ready(function() {
	$(".ZMSGraphic a.fancybox").each(function(i,v){
               $(v).append('<span class="plus"></span>');
        });

	$("a.fancybox").fancybox({
		'hideOnContentClick': true,
                'centerOnScroll' :true,
				'titleFromAlt' :true,
				'titlePosition' : 'over',
				'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (title.length ?  title : 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length ) + '</span>';
				}
	});
	
	$('.FormelCarousel .formel').bind('mouseenter click',function(event){
		event.preventDefault();
		if($(':animated').length==0){
			$(this).children('ul').slideToggle('fast', function() {
			    // Animation complete.
			  });
		}
		
	});
	$('.FormelCarousel .formel').bind('mouseleave click',function(event){
		event.preventDefault();
		if($(':animated').length==0){
		
			$(this).children('ul').slideToggle('fast', function() {
			    // Animation complete.
			  });
		}
		
	});
});
