Network Diagram is too slow

Hi,

I am new to flash. I am creating a network diagram.

http://S3.amazonaws.com/montred/isteal-flash/myspace-2006-10-03.swf

The problem is when the number of interconnections increase between two nodes, Mouse Over Effects takes a lot of time (10-15 secs).

Right now I am doing it as follows to group multiple lines with a circle:

function drawLine(counter:Number) {
item = groupLineCircle[counter];
_root.createEmptyMovieClip(item[0][1],item[0][0]);
with (_root[item[0][1]]) {
var total:Number = item.length;
for (var i:Number=0;i<total;i++) {
lineStyle(0,0xEEEEEE,100);
moveTo(X1, Y1);
lineTo(X2, Y2);
}
}
}