// JavaScript Document
var news = new Array(1);
	news[0] = "Home care providers must comply to provincial standards for excellence in home care service";
	news[1] = "Government policy requires that home care providers comply with labour legislation and policy";
	news[2] = "Home care providers offer ongoing education and training opportunities";
	news[3] = "Home care staff receive continuous supervision and support";
	news[4] = "42 percent of OHCA members have an average PSW tenure of more than five years";	
	news[5] = "CCAC expenditures in 2006/07 were $1.58 billion";
	news[6] = "The majority of clients are satisfied with their home care services";
	news[7] = "The minimum wage for Personal Support Workers for CCAC funded home care has been set at $12.50 per hour";
	news[8] = "All home care staff in Ontario are paid for Public Holidays";
	news[9] = "It is government policy that home care staff be compensated for travel between clients";
	news[10] = "On any given day approximately 185,000 Ontarians are receiving services through CCACs";
	news[11] = "Home care staff have options for regular and casual work as made available by their employer";
	news[12] = "Home care providers recruit and retain the best and brightest staff in order to meet the expectations of Ontarians for safe and effective care";
	news[13] = "Home care providers require that PSWs have a skill and knowledge level that equips them to provide high quality personal care.";

	
var itemId = 0;

function newsRotate(){
		if(itemId >= news.length){
			itemId = 0;
		}
		$('newsContent').hide();
		document.getElementById('newsContent').innerHTML = news[itemId];
		$('newsContent').appear();
		itemId++;
	}
