$(document).ready( function(){
	$('#service').mouseover( function() {
		$(this).attr('src', 'images/rollovers/service_rollover.jpg');
	}).mouseout( function() {
		$(this).attr('src', 'images/rollovers/service.jpg');
	});
	
	$('#treatment').mouseover( function() {
		$(this).attr('src', 'images/rollovers/treatment_rollover.jpg');
	}).mouseout( function() {
		$(this).attr('src', 'images/rollovers/treatment.jpg');
	});
	
	$('#physician').mouseover( function() {
		$(this).attr('src', 'images/rollovers/physician_rollover.jpg');
	}).mouseout( function() {
		$(this).attr('src', 'images/rollovers/physician.jpg');
	});
});
