function setSiteURL() { 
	window.site = "http://putraweb.net/index.php/"; 
} 
$(function() {
	setSiteURL();
	$.ajax({
			url: ""+site+"front/showMutiara", 
			success: function(response){
				$("#mutiara").html(response);
				}, 
			dataType: "html"
			});
	setInterval(function() { 
		$.ajax({
			url: ""+site+"front/showMutiara", 
			beforeSend: function(response){
					$("#mutiara").slideUp("slow");
					}, 
			success: function(response){
					$("#mutiara").html(response);
					$("#mutiara").slideDown("slow");
					}, 		
			dataType: "html"
			}
			)},
		15000);
});		
