$(document).ready(
	function(){
		$('#service-center span').click(
			function(){
				var cname = $(this).attr('class').toString().replace('img_','');
				var content = $('#'+cname).html();
				if(content==null)return;
				$("#dialog_center").dialog({
					title:$(this).html(),
					modal: true,
					width:400,
					height:600,
					open: function(event, ui) {
						$('#dialog_content').html(content);
					}
				});				
			}
		)
	}
)
