function addOverlay(strHeading, strParagraph){
	jQuery("#cbolds-overlay h2").text(strHeading);
	jQuery("#cbolds-overlay p").text(strParagraph);
	jQuery("#cbolds-overlay-bg").fadeIn();
	jQuery("#cbolds-overlay").fadeIn();
	return true;
}
function hideOverlay(){
	jQuery("#cbolds-overlay-bg").fadeOut();
	jQuery("#cbolds-overlay").fadeOut();
	return true;
}
function pauseOverlay(time){
	jQuery("#cbolds-overlay-bg").animate({opacity: 0.7}, time); // pause
	jQuery("#cbolds-overlay").animate({opacity: 1.0}, time); // pause
	jQuery("#cbolds-overlay-bg").fadeOut();
	jQuery("#cbolds-overlay").fadeOut();
}