$(document).ready(function() {	
  
	$('a[name=modal]').click(function(e) {
		e.preventDefault();		
		var id = $(this).attr('href');	
		//var maskHeight = $(document).height();
		var maskWidth = $(window).width();	
		var maskHeight = 1470;
		//var maskWidth = 1342;
		$('#mask').css({'width':maskWidth,'height':maskHeight});		
		$('#mask').fadeIn(100);	
		$('#mask').fadeTo("slow",0.4);	
	
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();          
		$(id).css('top',  -5);
		$(id).css('left', 77);
		$(id).fadeIn(120); 
	});
	
	$('.window .close').click(function (e) {
		e.preventDefault();
		
		$('#mask').hide();
		$('.window').hide();
	});		
	
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
	});			
	
});
