function setTitleImg(baseSRC,section,offset,height,width)
{
	document.getElementById('tocTitle').src=baseSRC+'/images/'+section+'.title.gif';
	document.getElementById('tocTitle').height=height;
	document.getElementById('tocTitle').width=width;
	document.getElementById('tocSpacer').width=offset;
}

function highlightBullet(baseSRC,section)
{
	document.getElementById('mainBullet').src=baseSRC+'/images/button.notSelected.gif';
	document.getElementById('vacanciesBullet').src=baseSRC+'/images/button.notSelected.gif';
	document.getElementById('managementBullet').src=baseSRC+'/images/button.notSelected.gif';
	document.getElementById('tenantsBullet').src=baseSRC+'/images/button.notSelected.gif';
	document.getElementById('ownersBullet').src=baseSRC+'/images/button.notSelected.gif';
	document.getElementById('storageBullet').src=baseSRC+'/images/button.notSelected.gif';
	document.getElementById(section+'Bullet').src=baseSRC+'/images/'+section+'.button.selected.gif';
}

function randomTestimonial()
{
	var testimonials = new Array( "<h3>Satisfied residents</h3><p>&quot;I'm very happy with the townhome you found and the excellent customer service Barker Realty has provided&quot;</p><p>&quot;...within 2 weeks of my first call you found exactly what I was looking for and I signed the lease&quot;</p><p>&quot;I would highly recommend your services to others looking to lease...&quot;</p>",
									  "<h3>Satisfied owners</h3><p>&quot;I have been using Barker since 1998 and I just wanted to thank you for a job well done!&quot;</p><p>&quot;I cannot express to you how pleased I am to have the property rented with no lost income.&quot;</p><p>&quot;Your staff has always been very helpful and responsive to my needs.&quot;</p>"
									);
							
	var randomNum = Math.floor( (Math.random() * testimonials.length) );
	return testimonials[randomNum];
}