$(document).ready(function(){
	$("a").focus(function(){
		this.blur();
	})
	$("#testMap area").mouseover(function(){
		var boxtoshow = "#" + $(this).attr("rel");
		$("#tdc div").removeClass("showdiv");
		$(boxtoshow).addClass("showdiv");
		return false;
	},function(){
		$("#tdc div").removeClass("showdiv");
	});
});
