<!--
$(document).ready(function(){

	createLabels = function() {
		 $('a[class=label]').qtip({
			  content: {
				 text: false // Use each elements title attribute
			  },
			  style: 'light' // Give it some style
		   });
		   
		   $('a[class=labelTel]').qtip({
			  content: {
				 text: "<table><tr><td>Jan:</td><td>06 43 000 738</td></tr><tr><td style='padding-right: 5px;'>Thijs:</td><td>06 45 830 859</td></tr></table>" // Use each elements title attribute
			  },
			  style: 'light' // Give it some style
		   });
		   
	}
	
	test = function() {
		alert('test');
		return false;
	}

});

-->
