(function($){
	$(document).ready(function() {
		//Form tips
		var list_elem = "form ul li";
		var span_elem = "form ul li span";
		var text_area = "form ul li textarea";
	
		$(list_elem).each(function() {
			$(this).children("span").hide();
			$(this).children("input").focus(function() {
				$(list_elem).each(function() {
					$(this).children("span").hide();
				});
				$(this).next("span").show();
			});
			$(this).children("textarea").focus(function() {
				$(list_elem).each(function() {
					$(this).children("span").hide();
				});
				$(this).next("span").show();
			});			
		});
	});
})(jQuery);	