	function searchSiteUpdatePage(page){
		$.getJSON(web_url+"news/siteUpdate/"+page,{}, function(data, status) {
			if (status=='success'){
				$('#content').html(data);
			}else{
				alert("ERROR");
			}
		});	
	}
	function searchNoticePage(page){
		$.getJSON(web_url+"news/noticePage/"+page,{}, function(data, status) {
			if (status=='success'){
				$('#content').html(data);
			}else{
				alert("ERROR");
			}
		});	
	}
	function searchLatestNewsPage(page){
		$.getJSON(web_url+"news/latestNewsPage/"+page,{}, function(data, status) {
			if (status=='success'){
				$('#content').html(data);
			}else{
				alert("ERROR");
			}
		});	
	}
	function searchPressPage(page){
		$.getJSON(web_url+"news/pressPage/"+page,{}, function(data, status) {
			if (status=='success'){
				$('#content').html(data);
			}else{
				alert("ERROR");
			}
		});	
	}