//------------------------------------------------------------------------------
function mouseOver(id)
{
	var obj;
	obj = document.getElementById(id);
	obj.src = "images/" + id + "Blue.gif";
}
//------------------------------------------------------------------------------
function mouseOut(id)
{
	var obj;
	obj = document.getElementById(id);
	obj.src = "images/" + id + "Silver.gif";
}
//------------------------------------------------------------------------------
var href = document.location.href;
href = href.toLowerCase();
var myPage;
if (href.indexOf('testimonialsall.php') == -1)
{
	myPage = false;
}
else
{
	myPage = true;
}
document.write('<p>');
if (myPage)
{
	document.write('<img class=wideButton');
	document.write(' src="images/allTestimonialsOrange.gif">');
}
else
{
	document.write('<a href="testimonialsAll.php">');
	document.write('<img src="images/allTestimonialsSilver.gif"');
	document.write(' class=wideButton id=allTestimonials');
	document.write(' onmouseover="mouseOver(');
	document.write("'allTestimonials'");
	document.write(')"');
	document.write(' onmouseout="mouseOut(');
	document.write("'allTestimonials'");
	document.write(')" border=0>');
	document.write('</a>');
}
document.write('</p>');
