$(document).ready(function(){
	$(document).keyup(function(event){
		if(event.keyCode == 27)  $('.press-modal').jqmHide();
	});
	$('.press-modal').each(function(i,e){
		$(e).hide().jqm({
			trigger: $(e).prev('.nk-readmore'),
			toTop:true,
			overlay:80,
			onShow:function(){
				$(e).show().css({
					'margin-left':'-'+$(e).find('img').width()/2+'px',
					'width':$(e).find('img').width()+'px'
				});
			}
		});
	});
});
