$(document).ready(
function(){
cl = $(".pc").children();
cl.each(function(i)
{
    $(this).css("font-size",Math.floor(18 + Math.random() * (23 - 18))+"px");
    $(this).simpletip(
    {
    persistent:false,
    content: $("#pc"+(i+1)).html(),
    showEffect: 'fade',
    hideEffect: 'fade',
    fixed: true
    });
});

}
);

