$(document).ready(function() {

	$("a.fancyboxajax").fancybox({
		'autoDimension': false,
		'autoScale': false,
		'width': 700,
		'height': 600,
		'padding': 10,
		'transitionIn': 'none',
		'transitionOut': 'none',
		'type': 'iframe'
	});
	
	$("a.fancyboximg").fancybox({
		'overlayShow': false,
		'opacity': true,
		'speedIn': 600,
		'speedOut': 500
	});

    $("a[rel=fancybox-group]").fancybox({
        'titlePosition' 	: 'over',
        'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
        }
    })
	
	$("a.fancyboxmovie").fancybox({
		'frameWidth': 548,
		'frameHeight': 270,
		'hideOnContentClick': false,
		'callbackOnClose': function() {
			//$("#fancy_content").empty;
			$("#fancy_content").load('../empty.html');
		}
	});

	$("a.fancyboxinline").fancybox({
		'hideOnContentClick': true,
		'titleShow': false
	});
});
