
$("document").ready(function() {
	$(".gallery a").click(function(e) {
		e.preventDefault();

		var id = '#dialog';

		var maskHeight = $(document).height();  
		var maskWidth = $(window).width();  

		$('#mask').css({'width':maskWidth,'height':maskHeight});  
		
		if (title = $(this).children('img').attr('alt'))
			$('#wintitle').html(title);
		else
			$('#wintitle').html(page.title);

		$('#bigimg').html('<img src="'+this.href+'" />');
		$('#mask').fadeTo("fast",0.5);    

		var winH = $(window).height();  
		var winW = $(window).width();  
		

		$(id).css('top',  winH/2-$(id).height()/2+$(window).scrollTop());  
		$(id).css('left', winW/2-$(id).width()/2);  

		$(id).show();
	});
	
	$('.window .close').click(function (e) {  
		e.preventDefault();  
		$('#mask, .window').hide();  
	});       
       
	$('#mask').click(function () {  
		$(this).hide();  
		$('.window').hide();  
	});
});

