	<!-- focus the Username inputfield -->

	 $(document).ready(function () {
         $("input:first").focus();
    });


	<!-- Glow on focus and hide the labels on keypress -->

    $(".start_login_input").focusin(function () {
         $(this).addClass("active");
    });

	$('.start_login_input').keypress(function() {
   		$(this).prev().css({display:"none"});
	});

	 $(".start_login_input").focusout(function () {
         $(this).removeClass("active");
    });

