$(function(){

	$('a').click(function(){
		
		// extract href of link
		href = $(this).attr('href');

		// jika link halaman dengan awalan http:// maka dilanjutkan
		var hrefLow = href.toLowerCase();
		if(hrefLow.indexOf("http://") == 0) return true;
		if(hrefLow.indexOf("https://") == 0) return true;
		if(hrefLow.indexOf("#") == 0)return true;
		d = new Date();
		href +=  ((href.indexOf("?") != -1)?'&':'?' )+ "ngawur="+d.getTime();
		$("#topdiv").show();
		$.ajax({
			url: href,
			type: 'post', 
			data: {ajax:true},
			dataType: 'json',
			success: function(data)
			{
				$("#topdiv").hide("fast");
				if(data.status == 'OK')
				{
					$("#content").html(data.data.content_html);
					$("#statistik").html(data.data.statistik_html);
				}
				else{
					//alert(data.messages);
					return true;
				}
			},
			error: function(response)
			{
				$("#topdiv").hide("fast");
				//alert(response.responseText);
				return true;
			}
		});
		
		//gagalkan ganti halaman
		return false;
		
	});

	
});
