$(document).ready(function() {
		$("dl.apply-process dt:not(.offer)").tooltip({
			showURL: false,
			track: true,
			bodyHandler: function() {
				return $( this ).next().text();
			}
		});
		$("dl.apply-process dt.offer").tooltip({
			showURL: false,
			track: true,
			extraClass: "offer",
			bodyHandler: function() {
				return $( this ).next().text();
			}
		});
	 });

