$(document).ready(function(){
 

	$("a.dot_links").hover(
	      function () {
	        $(this).find('img').attr('src','/images/adoption_programs/SC_map_dot_green.gif');
			$('a.dot_links').not(this).find('img').attr('src','/images/adoption_programs/SC_map_dot_orange.gif');
			rel = $(this).attr('rel');
			
			updateContent(rel);
	      }, 
	      function () {
	       
	      }
	    );



	});


