$(document).ready(function() {
	
	$("a").each(function (i) {
	
	        if (this.title != "") {
        	
        		if (	this.title != "Opens internal link in current window" &&
        			this.title != "Initiates file download" &&
        			this.title != "Opens external link in new window" &&
        			this.title != "Opens window for sending email") {
        			
        			$(this).tooltip({ 
				    track: true, 
				    delay: 0, 
				    showURL: false, 
				    opacity: 1, 
				    fixPNG: true, 
				    showBody: " - ", 
				    extraClass: "pretty fancy", 
				    top: -15, 
				    left: 5
				});
				
				this.className = "tooltipp";
        			
        		} else {
        			this.title = "";
        		}
        	
	        }
	        
      });
	 
});

