function wizardHelper() {
    this.running = false;
	this.curr = undefined;

	/**
	* Load the next Item - allowing the user to cycle over the steps required
	*/
	this.loadSteps=function() {
	    if(this.running) {
	        this.curr=$('#' + this.curr).attr("next")
	    } else {
	        this.curr
	    }
	    
	    this.display(this.curr);
	}
	
	this.display=function(arg) {
		
		$('#'+arg).keypress(function() {
		    $('#tooltip').hide();
		});
		
	    this.running = true;
	    this.curr=arg;
	    this.loadToolTip(arg);
	    $('#'+arg).trigger("focus");
	    $('#tooltip').hide();
	    $('#tooltip').slideDown("slow");
	}
	
	this.loadToolTip=function(arg) {
		$('#'+arg).tooltip({track: false,delay: 0,showURL: false,showBody: " - ",extraClass: "pretty",fixPNG: true,showURL:true,caller:arg});
		$('#tooltip').unbind();
		$('#tooltip').click(function(){$('#tooltip').hide();});	
	}
}