
function getContent(content_id, icon_id) {
	$.ajax({
	  url: 'index.php',
	  type: 'GET',
	  data: ({page : content_id}),
	  async: true,
	  success: function(msg) {
		  document.getElementById('featured-services').innerHTML = msg;
	  }
	 });
	
	$.ajax({
	   url: 'index.php',
	   type: 'GET',
	   data: ({page : icon_id}),
	   async: true,
	   success: function(msg) {
			document.getElementById('icon').innerHTML = msg;
	   }
	  });
}
   

  
