$(document).ready(function() {
    $('a[modal=true]').click(function (e) {
		var id = $(this).attr('href');
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
		$('#mask').css({'width':maskWidth,'height':maskHeight});
		$('#mask').fadeIn(500);	
		$('#mask').fadeTo("normal",0.8);	
		var winH = $(window).height();
		var winW = $(window).width();
		$(id).css('top',  winH/2-$(id).height()/2);
		$(id).css('left', winW/2-$(id).width()/2);
		$(id).fadeIn(1000); 
	});
	$('.box_modal .close').click(function (e) {
		e.preventDefault();
		$('#mask').hide();
		$('.box_modal').hide();
		$(this).parent().find(".jScrollPaneDrag").css( "top", "0");
		$(this).parent().find(".scroll-pane").css( "top", "0");
		
	});		
	$('#mask').click(function () {
		$(this).hide();
		$('.box_modal').hide();
	});
});

