$(document).ready(function() {	// Help tips
	var helpElement = $('#help');
 	$(".tip")
 	.mouseenter(function(evt) {
 		helpElement.html('<div class="helptitle">'+$(this).attr('title').replace(' - ', '<br/>')+'</div>').show();
 		return false;
 	})
 	.mousemove(function(evt) { 		helpElement.css('left', evt.pageX-20).css('top', evt.pageY-68) 	})
 	.mouseleave(function(evt) {
 		helpElement.hide();
 	});
});