$(document).ready(function(){
	
	$("area").hover(function() {
							 
		var title = $(this).attr("title");
		$("#distributor_map").prepend("<div id=\"hover_description\">" + title + "</div>");
		
	},
	function() {
	
		$("#hover_description").remove();

		
	});
	
	$(".track").click(function() {
		
		var distributor = $(this).children('a').text();
		var town = $(this).children('span').text();
		pageTracker._trackPageview('/distributor/'+distributor+' '+town);
		
	});

});
