var ad1_msg_ctr=1;
var ad1_msg_count=4;
var ad1_hdr="";
var ad1_msg="";
var ad1_wait=8000;
function start_ad1(){
    showadbox();
    }
function showadbox(){
	if(ad1_msg_ctr == 1){
		ad1_hdr = "HUMAN RESOURCES SERVICES";
		ad1_msg ="Focus on running your business not the ever-changing employment laws and regulations that can put your company at risk.";
		}
	if(ad1_msg_ctr == 2){
		ad1_hdr = "EMPLOYEE BENEFITS";
		ad1_msg = "Teaming with Oasis enables you to provide affordable benefits so you can attract and retain the best employees.";
		}
	if(ad1_msg_ctr == 3){
		ad1_hdr = "PAYROLL SERVICES";
		ad1_msg = "Oasis has an experienced and efficient Payroll Team that can help relieve you of the burden of payroll processing.";
		}
	if(ad1_msg_ctr == 4){
		ad1_hdr = "RISK MANAGEMENT";
		ad1_msg = "There's a certain amount of risk in any business, but Oasis can recommend a plan to minimize risks your company might face.";
		}

	document.getElementById("ad1_hdr_box").innerHTML=ad1_hdr;
	document.getElementById("ad1_msg_box").innerHTML=ad1_msg;
   	++ad1_msg_ctr;
	if(ad1_msg_ctr > ad1_msg_count){
        ad1_msg_ctr = 1;
        }
	t=setTimeout("showadbox()",ad1_wait);
    }
