// Index Ajax
$(document).ready(function(){
	function cmsAjaxInterface(typ) {
		
		$.ajax 
		({
			type: "POST",
			url: "../includes/cms_handler.php",
			dataType : "json",
			data: {
				type:typ
			},
				success:function(response) 
				{
					switch(response.type)
					{
						case "displayFeat" :
							$('#caseStud').html(response.result);
						break;
						
					}
				}
		});
	}
	cmsAjaxInterface("displayFeat");
	
});
