$(document).ready(function() {
	// Stuff to do as soon as the DOM is ready;
	
	// Fix the a/img problem
	$(".content a > img").parent().addClass('linkedImage');
	
	// IE6 & IE7 focus fix & bullets
		if ($.browser.msie && $.browser.version.substr(0,1)<9) {
			// specialities bullets
			$('#specialties li:not(:last-child)').append('<span class="specialtiesBullet">. </span>');
		}
});

