// This website was designed and created by Snyder Tech Talents.  
// For more info email sttalents(deletethis)@hotmail.com.

function DoMouseOver(obj)
{
	var str = obj.id;
	obj.src = 'images/buttons/' + str.toLowerCase() + '_bo.gif';
}
function DoMouseOut(obj)
{
	var str = obj.id;
	obj.src = 'images/buttons/' + str.toLowerCase() + '_bn.gif';
}
function DoMouseDown(obj)
{
	var str = obj.id;
	obj.src = 'images/buttons/' + str.toLowerCase() + '_bs.gif';
}

