jQuery(document).ready(function(){
	//Selects all inputs (including textereas) that does not have an empty title element and adds a tooltip
	jQuery('form.withTooltip :input[title]').tooltip({
		position: "top right",
		offset: [ 22, 10],
		effect: "fade",
		opacity: 1,
		tipClass: "infoTooltip"
	});
	
	jQuery(".rtValidator").validationEngine('attach');
	
});

