function loadSignUp(){

// select all desired input fields and attach tooltips to them 
$(".tooltip").tooltip({ 
 
    // place tooltip on the right edge 
    position: "center right", 
 
    // a little tweaking of the position 
    offset: [95, -20], 
 
    // use the built-in fadeIn/fadeOut effect 
    effect: "fade", 
 
    // custom opacity setting 
    opacity: 1.0, 
 
    // use this single tooltip element 
    tip: '.one' 
 
});
$(".tooltip2").tooltip({ 
 
    // place tooltip on the right edge 
    position: "center right", 
 
    // a little tweaking of the position 
    offset: [95, -20], 
 
    // use the built-in fadeIn/fadeOut effect 
    effect: "fade", 
 
    // custom opacity setting 
    opacity: 1.0, 
 
    // use this single tooltip element 
    tip: '.two' 
 
});
$(".tooltip3").tooltip({ 
 
    // place tooltip on the right edge 
    position: "center right", 
 
    // a little tweaking of the position 
    offset: [95, -20], 
 
    // use the built-in fadeIn/fadeOut effect 
    effect: "fade", 
 
    // custom opacity setting 
    opacity: 1.0, 
 
    // use this single tooltip element 
    tip: '.three' 
 
});
$(".tooltip4").tooltip({ 
 
    // place tooltip on the right edge 
    position: "center right", 
 
    // a little tweaking of the position 
    offset: [95, -20], 
 
    // use the built-in fadeIn/fadeOut effect 
    effect: "fade", 
 
    // custom opacity setting 
    opacity: 1.0, 
 
    // use this single tooltip element 
    tip: '.four' 
 
});

}
