$(document).ready(function () {
	tampilkan();
	gantiQuote();
});

function gantiQuote()
{
 setInterval('tampilkan()',5000);
}

function tampilkan()
{
	var hasil="";
	var vsid=Math.random();
	$.get("responseQuote.php",{sid:vsid},function(data){
	var jumlah=data.getElementsByTagName("quote_id").length
		if(jumlah!=0)
		{
			for(i=0;i<jumlah;i++)
			{
				quote_id=data.getElementsByTagName("quote_id")[i].childNodes[0].nodeValue;
				judul_quote=data.getElementsByTagName("judul_quote")[i].childNodes[0].nodeValue;
				//alert(document.frmBahasa.bahasa.value);
				if(document.frmBahasa.bahasa.value=="i")
				{judul_quote=data.getElementsByTagName("judul_quote_ina")[i].childNodes[0].nodeValue;}
				else
				{judul_quote=data.getElementsByTagName("judul_quote")[i].childNodes[0].nodeValue;}
				hasil=hasil+"<div style=\"padding:10px;text-align:center;vertical-align:middle;\"><strong>"+judul_quote.replace(/~/gi,"<br />")+"</strong></div>";
				}
			document.getElementById("quote").innerHTML=hasil;
		}
		else
		{
			document.getElementById("quote").innerHTML="";
		}
	})
}