var $tab = jQuery.noConflict();	
  $tab(function() {
			
				//example 2
				$tab("#processPanel2").processPanel({
					kind: "freeChoice",
					icons: false,
					nextPrevButtons: false,
					style: "orange-gray",
					onOpen: function(event, step, content, stepNumber){
						var info = "Current step: " + stepNumber + "\n"
						info += "Step content id: " + content.attr("id");
						
					}
				});
				
});
