$(document).ready(function(){
	// Initially hide the physician info
	$('#physician-list .category-row').hide();
	
	// Toggle the physician info when the specialty is selected
	$('#physician-list h3.specialty').click(function(){
		var elem = $("div#"+$(this).attr('rel'));	
		elem.toggle();
	});
});

