function ReloadCaptcha(path){
        var rand=Math.random();
        if(!path)
                path='';
        $('#captcha').attr('src',path+'captcha.php?'+rand);
}

$(function() {
$('#reloadCaptchaButton').tooltip({ 
    track: true, 
    delay: 0, 
    showURL: false, 
    showBody: " - ", 
    fade: 100 
});
});




