/**
 * @author jmagner
 */
			$(document).ready(function (e) {
				$('.innerlabel').each(function() {
					$(this).attr("title",$(this).val());
				});
				$('.innerlabel').focus(function () {
					if ($(this).val()==$(this).attr("title"))
					{
						$(this).val("");
						$(this).css("color","#000000");
					}
				});
				$('.innerlabel').blur(function () {
					if ($(this).val()=="")
					{
						$(this).css("color","#999");
						$(this).val($(this).attr("title"));
					}
				});
			});
