
$(document).ready(function(){$('#progPageList #progtitles li').each(function(){$(this).mouseover(function(){$('#proginfos').stop();var index=$('#progPageList #progtitles li').index(this);var info=$('#proginfosdiv #proginfos li').get(index);$('#proginfos').animate({top:$(info).position().top+'px',right:$(info).position().left+'px'},'normal','swing');});});});