function displayClients(str,str2,str3,str4) {
	   array = Array(str,str2,str3,str4);
	   agent.call('/inc/ajax/clients/clients.php','displayClients','cbDisplayClients',array);

}

function cbDisplayClients(str) {
   divCalendar = document.getElementById('calendar');
   divCalendar.innerHTML = str;
   
}

function showTestimonial(id) {		
	document.getElementById(id).className = 'testimonailView';	
}

function hideTestimonial(id) {
	document.getElementById(id).className = 'testimonailHide';
}
