// JavaScript Document

$(document).ready(function() {
				$("a[rel=gallery]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'over',
				
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					//return '<span id="fancybox-title-over"><span class="imageno">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + ' </span> ' + (title.length ? ' ' + title : '') + '</span>';
				}
				
			});
			
				$("a[rel=example1]").fancybox({
		'titleShow'     : false
	});


    $(".fancy").fancybox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'scrolling'			: 'no',
			'centerOnScroll'	: true,
			'hideOnContentClick': false,
			
		}).trigger('click');
		
		/*$("a#prom-fancy").click(function(e) {
    e.preventDefault();
    var link = $(this).attr("href");
    window.parent.location = link;
});*/
	});
