/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   jQuery Functions for Brunswick Orthopaedic Associates
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
$(document).ready(function (){

// Add class of "alt" to every odd sidebar widget <li> - Using "even" because we start numbering at position 0.
	$("#sidebar .widget table").each(function() {
		$(this).find("tr:even").addClass("alt");
	});
	
// Add // separators between location information details on home page bottom
	$("body#home #details span:not(:last)").append("<span class=\"separator\">//</span>");
	
// Toggle the "read more" of the Doctor bios
	$(".show").css("display","none");
	$('a.more').toggle( 
		function() { 
			$(this).prev('.show').slideDown(); 
			$(this).html('Show Less');
		}, 
		function() { 
			$(this).prev('.show').slideUp(); 
			$(this).html('Read More');
		} 
	);
	
// PNG fix
	//DD_belatedPNG.fix("#logo h1, #g, #wrap, #tnav, #inner");

}); // END OF DOCUMENT
