を使ってみた
				    
				  Backlog の Git 機能のネットワーク図
				  入門ドキュメントも作りました
				    
				    ePub版も公開してます!
領域の真ん中に白抜きの円を描く
var r = Raphael('demo1',360,360);
var circle = r.circle(180, 180, 20).attr({
  "fill": "#fff",
  "stroke":"#f00",
  "stroke-width":3
});
					
				  ホバーした時に色変える
circle.hover(function(){
  this.attr("fill","#f00");
}, function(){
  this.attr("fill","#fff");
});
					
				  クリックしたら移動する
circle.click(function(){
  this.animate({transform:'T-140,0', fill:'#fff'},200,'linear');
});