jQuery.noConflict();

var textFields = {

	init : function() {

		jQuery('label.text-hint').each(function() {
			jQuery(this).hide();
			var i = jQuery(this).siblings();
			var l = jQuery(this).text();
			i.attr('value', l);
			i.focus(function() {
				if(i.attr('value') == l) {
					i.attr('value', '');
				}
			}).blur(function() {
				if(i.attr('value') == '') {
					i.attr('value', l);
				}
			});
		});
	}
}

jQuery(document).ready(function(){
	textFields.init();
});