$(function() {
$("#loading").toggle();

$.ajax({url: "berita.php", success: function(response){$("#latest").php(response);}, dataType: "php"});
$.ajax({url: "index.php/front/list_post", success: function(response){$("#list1").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/list_post2", success: function(response){$("#list2").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/guestbook_form", success: function(response){$("#guestbook_form").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/show_menu", success: function(response){$("#for_menu").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/show_search", success: function(response){$("#search").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/list_post3", success: function(response){$("#list3").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/calendar", success: function(response){$("#calendar").html(response);}, dataType: "html"});
$.ajax({url: "index.php/front/kata_mutiara", beforeSend: function(response){$("#mutiara").hide("normal")}, success: function(response){$("#mutiara").html(response);$("#mutiara").fadeIn(2000)}, dataType: "html"});
setInterval(function() { 
		$.ajax({url: "index.php/front/kata_mutiara", 
			    beforeSend: function(response){$("#mutiara").fadeOut(500)}, 
				success: function(response){$("#mutiara").html(response);$("#mutiara").fadeIn	(2000)}, dataType: "html"}) },20000) ;

setInterval(function() { 
		$.ajax({url: "index.php/front/list_post", 
			    success: function(response){$("#list1").html(response);}, dataType: "html"}) },300000);

setInterval(function() { 
		$.ajax({url: "index.php/front/list_post2", 
				success: function(response){$("#list2").html(response);}, dataType: "html"}) },300000);

setInterval(function() { 
		$.ajax({url: "index.php/front/list_post3", 
			    success: function(response){$("#list3").html(response);}, dataType: "html"}) },300000);

$("#refresh_gb").bind("click",function(event) {$.ajax({url: "index.php/front/guestbook_form", success: function(response){$("#guestbook_form").html(response);}, dataType: "html"})}) ;
setInterval(function() { $.ajax({url: "index.php/front/guestbook_form", success: function(response){$("#guestbook_form").html(response);}, dataType: "html"}) },300000);
});
