/*
Feel free to let me know of a better, more optimized way of doing this. Thanks.
sean@thecity.org
*/

function toggleTestimonial() {
	var d = document; {
		document.getElementById('testimonial').style.display = "block";
		document.getElementById('testimonialTab').style.backgroundPosition = "0 0";
		document.getElementById('welcome').style.display = "none";
		document.getElementById('welcomeTab').style.backgroundPosition = "0 -24px";
	} 
}
function toggleWelcome() {
	var d = document; {
		document.getElementById('welcome').style.display = "block";
		document.getElementById('welcomeTab').style.backgroundPosition = "0 0";
		document.getElementById('testimonial').style.display = "none";
		document.getElementById('testimonialTab').style.backgroundPosition = "0 -24px";
	} 
}
