 		$(document).ready(function() {
            $("a[rel=example_group]").fancybox({
				'titleShow'		: false,
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

            $("a.fancyvideo").fancybox({
				'width'				: 640,
				'height'			: 480,
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'scrolling'         : 'no',
				'type'				: 'iframe'
			});		 
			$("a.fancyGmap").fancybox({
				'width'				: 800,
				'height'			: 600,
				'autoScale'			: false,
				'scrolling'         : 'no',
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'type'				: 'iframe'
			});	
			$("a.icon3").fancybox({
				'width'				: 500,
				'height'			: 480,
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'type'				: 'iframe'
			});	
			
			$("#close-button").click(function(){
			    parent.$.fancybox.close();
            });
						
			$("a.icon4").click(function() {
                    $('.maincol').jqprint();
                    return false;
                });
	 	 
		});
	
