﻿
$(function(){
	$('#tabbox ul li a').attr('href', 'javascript:void(0)').click(function(){
		$('#tabbox ul li').removeAttr('class');
		$(this).parent('li').addClass('selected');
		if($(this).attr('title') == 'Find a Physician'){
			$('#tabbox #findphysician').css('display', 'inline');
			$('#tabbox #homecareer').css('display', 'none');
		}else{
			$('#tabbox #homecareer').css('display', 'inline');
			$('#tabbox #findphysician').css('display', 'none');
		}
	});
	$('#newslettersignup p:contains("Sign up for our")').text('Register to receive our Stay in Touch email newsletter by entering your email below.');
});
