//set mouseover for appointment button



$('#makeapt img').hover(

	function() {

		$(this).attr("src", "/wp-content/themes/tao/images/makeapt_over.jpg");

	}, function() {

		$(this).attr("src", "/wp-content/themes/tao/images/makeapt_norm.jpg");

	})



