$(document).ready(function() {

	$("td.filled").simpletip({ 

	   // Configuration properties
	   content: '',
		offset: [0, -6],
	   fixed: true,
	onShow: function(){
		this.update( '<div class="meat">' + this.getParent().find('div.event').html() + '</div>' )
	}

	});
});
