$(document).ready(function() {

	$("input:submit").button();
	
	$("a.media_photo").fancybox({
		'transitionIn'  :	'fade',
		'transitionOut' :	'fade',
		'speedIn'       :	400, 
		'speedOut'      :	400,
		'titlePosition' : 'over',
		'titleFormat'	: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
});
