$(document).ready(function() {
	$('.open_popup').click(function() {
		num = $(this).attr('id');
		num = num.replace(/[^0-9]/g, ''); 
		
		$('#popup' + num).jqmShow();
	});

});

