function helpbar(button){
var slogan = "";
switch (button){
	case "help" :
	slogan = "Click to go to the help page.";
	break;

	case "print" :
	slogan = "Click to print the slides.";
	break;

	case "home" :
	slogan = "Click to download the Presentation";
	break;

	case "pdf" :
	slogan = "Click to download the Presentation";
	break;

	case "email" :
	slogan = "Send Antfarm an email for assistance or comment.";
	break;

	case "onlineresults" :
	slogan = "Click to download the pdf document";
	break;

	case "downloadables" :
	slogan = "Click to download additional documentation";
	break;

	case "slideview" :
	slogan = "Click to view the slideset";
	break;

	case "slideback" :
	slogan = "This button will display the previous slide";
	break;

	case "slidestart" :
	slogan = "This button will display the first slide";
	break;

	case "slidesync" :
	slogan = "To synchronize to the slide currently being discussed, click here.";
	break;

	case "slidenext" :
	slogan = "This button will display the next slide";
	break;

	case "slidelast" :
	slogan = "This button will display the last slide";
	break;

	case "bio" :
	slogan = "Click to see the speaker's brief biographic synopsis";
	break;

	case "out" :
	slogan = "";
	break;
	
	case "antfarm" :
	slogan = "Streaming powered by The Antfarm! http://www.antfarm.co.za";
	break;
	
	case "transcript" :
	slogan = "You can download the transcript by clicking here.";
	break;

	case "prestool" :
	slogan = "Click on the icons for a description of their function.";
	break;
	
	case "slidenav" :
	slogan = "Click on the icons to navigate the slide presentation.";
	break;

	case "transcriptview" :
	slogan = "Click to toggle the synchronised transcription window.";
	break;

	case "overend" :
	slogan = "Overall Communications Management by Overend Outsource";
	break;

	}	
try{
	document.getElementById("helpbar").innerHTML  = slogan;
	}
 catch(errorObject){ ;}

try{
	window.slideframe.getElementById("helpbar").innerHTML  = slogan;
	}
 catch(errorObject){ ;}

}
