function toggle_search(id){
	var n = null;
	if (document.getElementById)
		n = document.getElementById(id);
	else if (document.all)
		n = document.all[id];
	if (!n)return;
	if (n.style.display == 'none')
		n.style.display = '';
	else
		n.style.display = 'none';
}

function expand_search(id){
	var n = null;
	if (document.getElementById)
		n = document.getElementById(id);
	else if (document.all)
		n = document.all[id];
	if (!n)return;
	n.style.display = '';
}

function hide_search(id){
	var n = null;
	if (document.getElementById)
		n = document.getElementById(id);
	else if (document.all)
		n = document.all[id];
	if (!n)return;
	n.style.display = 'none';
}


function show_specialty(id){
	hide_testimonials(id);
	var n = null;
	var n1 = null;
	if (document.getElementById){
		n = document.getElementById('specialty_'+id);
		n1 = document.getElementById('specialtytab_'+id);
	}
	else if (document.all){
		n = document.all['specialty_'+id];
		n1 = document.all['specialtytab_'+id];
	}
	if (!n||!n1)return;

	n1.style.backgroundImage = 'url(/images/bg_testimonials2.jpg)';
	n.style.display = '';
}

function hide_specialty(id){
	var n = null;
	var n1 = null;
	if (document.getElementById){
		n = document.getElementById('specialty_'+id);
		n1 = document.getElementById('specialtytab_'+id);
	}
	else if (document.all){
		n = document.all['specialty_'+id];
		n1 = document.all['specialtytab_'+id];
	}
	if (!n||!n1)return;

	n1.style.backgroundImage = 'url(/images/bg_popular_left.jpg)';
	n.style.display = 'none';
}

function show_testimonials(id){
	hide_specialty(id);
	var n = null;
	var n1 = null;
	if (document.getElementById){
		n = document.getElementById('testimonials_'+id);
		n1 = document.getElementById('testimonialstab_'+id);
	}
	else if (document.all){
		n = document.all['testimonials_'+id];
		n1 = document.all['testimonialstab_'+id];
	}
	if (!n||!n1)return;

	n1.style.backgroundImage = 'url(/images/bg_testimonials2.jpg)';
	n.style.display = '';
}

function hide_testimonials(id){
	var n = null;
	var n1 = null;
	if (document.getElementById){
		n = document.getElementById('testimonials_'+id);
		n1 = document.getElementById('testimonialstab_'+id);
	}
	else if (document.all){
		n = document.all['testimonials_'+id];
		n1 = document.all['testimonialstab_'+id];
	}
	if (!n||!n1)return;

	n1.style.backgroundImage = 'url(/images/bg_popular_left.jpg)';
	n.style.display = 'none';
}
