	$(document).ready(function(){
		// change map marker color on mouseover
		$("#clickable a img").mouseover(function(){ 
			over(this.id);
		}).mouseout(function(){ 
			out(this.id);
		});
		
		// change map marker color on text mouseover
		$("#stores ul li a").mouseover(function(){ 
			over(this.id.substring(4, this.id.length));
		}).mouseout(function(){ 
			out(this.id.substring(4, this.id.length));
		});
	    
	 });
 
    function over(x) {
    	$("img#"+x).attr({ src: "/cs_images/map/red_circle.png" });
      	$("img#"+x).addClass('top');
      	$("a#lnk_"+x).addClass("hover");
    }
    
    function out(x) {
		$("img#"+x).attr({ src: "/cs_images/map/white_circle.png" });
		$("img#"+x).removeClass('top');
		$("a#lnk_"+x).removeClass("hover");
    }