jQuery(function($){
	var $home = "/breast-biopsy.htm";
	if (location.pathname == $home)
		{
			$('#mainNav a[href="' + $home + '"]').addClass('current');
		}
	$("#mainNav a, #sideNav a").not(".current, li ul a").hover(
		function(e){
			$(this).stop().animate({backgroundColor: "#EEE"}, 250);
		},function(e){
			$(this).stop().animate({backgroundColor: "#D9D9D9"}, 250);
		});
});
