$(document).ready(function(){var max=parseInt($("#max").val());$("#counter").text("1 of "+max);$(".renungan").click(function(){var id=($(this).attr("href")).substring(1);var judul=$(this).text();var tgl=idToDate(id);var url=$("#url").val()+id+".php";var print_url=$("#print_url").val()+id;document.getElementById("print").innerHTML="<a href='"+print_url+"' target='_blank'>Print Halaman Ini</a>";$("h1").fadeOut("slow",function(){$(this).text(judul).fadeIn("slow")});$("#date").fadeOut("slow",function(){$(this).text(tgl).fadeIn("slow")});$("#contentRenungan").fadeOut("slow",function(){$(this).load(url).fadeIn("slow")});return false});$("#previous").click(function(){var now=parseInt($("#now").val());var prev=now-1;if(now>1){$(".renungan-"+now).slideUp("slow",function(){$(".renungan-"+prev).slideDown("slow");$("#now").val(prev);$("#counter").text(prev+" of "+max)})}return false});$("#next").click(function(){var now=parseInt($("#now").val());var next=now+1;if(now<max){$(".renungan-"+now).slideUp("slow",function(){$(".renungan-"+next).slideDown("slow");$("#now").val(next);$("#counter").text(next+" of "+max)})}return false})});function idToDate(id){var year="20"+id.substr(0,2);var month=id.substr(2,2);var day=id.substr(4);switch(month){case"01":month="Januari";break;case"02":month="Februari";break;case"03":month="Maret";break;case"04":month="April";break;case"05":month="Mei";break;case"06":month="Juni";break;case"07":month="Juli";break;case"08":month="Agustus";break;case"09":month="September";break;case"10":month="Oktober";break;case"11":month="November";break;case"12":month="Desember";break}return day+" "+month+" "+year}