$(document).ready(function () {
	var legendTxt = new Array();
	jQuery(".first-column form li").each(function(i){
		var legend = $("em", this);
		if(legend.text()!=""){

			$(legend).hide();
			$("input, select", this).qtip({content:legend.text(), position:'center'});
		}
	})
	jQuery(".first-column form").mouseover(function(){
		//jQuery(".qtip-wrapper").hide();
	});
});
