jQuery.extend({
    rand: function(X) {
        return Math.floor(X * (Math.random() % 1));
    },
    randBetHelp: function(MinV, MaxV) {
      return MinV + jQuery.rand(MaxV - MinV + 1);
    }
});
  
jQuery(document).ready(function(){
    startHim();
    startFull();
});

function startHim(){
    jQuery("#help_one").animate({top: jQuery.randBetHelp(0, 30)+"px"},8000);
    setTimeout("startHim()",8000);   
}

function startFull(){
    jQuery("#help_full").animate({left: jQuery.randBetHelp(0, 300)+'px'},4000);
    setTimeout("startFull()",4000);
}

