jQuery(document).ready(function() {
	$("a.fancyboxajax").click(function() {
		$.fancybox({
			'margin'		   : '-1',
			'width' 		   : 632,
			'transitionIn' 	   : 'none',
			'transitionOut'	   : 'none',
			'scrolling'		   : 'none',
			'href'             : $(this).attr('href'),
			'type'             : 'ajax',
			'ajax'     	       : {
									type    : "POST",
									data    : 'id=' + $(this).attr('rel')
								 }
		  });
		return false;
	});
	$("a[rel^=lightbox]").fancybox({
			'transitionIn' 	   : 'none',
			'transitionOut'	   : 'none',
			'titlePosition'	   : 'over',
			'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">' + title + ' (' + (currentIndex + 1) + ' / ' + currentArray.length + ')' + '</span>';
		}

	});
	$("a[rel=fancypreview]").fancybox({
			'transitionIn' 	   : 'none',
			'transitionOut'	   : 'none'
	});
        $("a.preview").fancybox({
			'transitionIn' 	   : 'none',
			'transitionOut'	   : 'none',
                        'padding'          : 0
	});

});

