/* -- GDG JavaScript Library */

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
function changeImagesArray(array) {
	if (preloadFlag == true) {
		var d = document; var img;
		for (var i=0; i<array.length; i+=2) {
			img = null; var n = array[i];
			if (d.images) {img = d.images[n];}
			if (!img && d.getElementById) {img = d.getElementById(n);}
			if (img) {img.src = array[i+1];}
		}
	}
}
function changeImages() {
	changeImagesArray(changeImages.arguments);
}

var text_st = new Array("<h6>With <b>MedPac Online ™</b>, we know exactly how our practice is performing at any given time.</h6>",
									"<h6>With <b>MedPac Online ™</b>, our receivables outstanding over 60 and 90 days have declined by 60%.</h6> ",
									"<h6>With <b>MedPac Online ™</b>, our total collections as a percentage of allowed charges are greater than 95%.</h6>",
									"<h6>Thanks to <b>MedPac Online ™</b>, we don’t have to spend a fortune for buying practice management tools and keep up with the upgrade treadmill.</h6>",
									"<h6>Any Physician looking to cost effectively manage their practice operations without losing local control and productivity should consider <b>MedPac’s Managed Services</b>.</h6>",
									"<h6>With <b>MedPac Online ™</b>, our Practice average receivable days has come down to 30 days from 60 to 90 days.</h6>");
function sleep(){
	setTimeout("replace()",5000);	
}
var i=0;
function replace() {
				document.all.quotes.innerHTML=text_st[i];
				i +=1;
				if (i==6){
					i-=6;
				}
			
			sleep();
}

	
