$(document).ready(function() {
	/*
	*   Examples - images
	*/
	$("a#map1").fancybox({
		'titleShow'     : false
	});

	$("a#map2").fancybox({
		'titleShow'     : false
	});

	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'width'		: 1000,
		'height'		: 1000,

		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '<\/span>';
		}
	});
	
});

function popup(){
	$("a#map2").trigger("click");
}
