for (var i = 0; i < Obj.Sectors.length; i++) {
Obj.Sectors[i].mousemove(function (event) {
Obj.Popup(event.clientX, event.clientY, i);
});
}
Obj.Sectors.each(function(sector, sectorIndex){
sector.mousemove( function(event){
Obj.Popup(event.clientX, event.clientY, sectorIndex);
});
});