$(document).ready(function(){
	$('.icons li a').click(function(e){
		var lb = $('#' + this.rel);
		lb.css('top', $(window).scrollTop() + 20);
		lb.css('left', ($('body').width() - 797) / 2);
		lb.show();
		$('#curtain').show();
		$('#curtain').css('height', $('body').height());
		e.preventDefault();
	});
	
	$('.lb .close').click(function(e){
		$('#curtain').hide();
		$(this).parents('div').eq(0).hide();
	});
	$('.close').pngFix();
});
