$(document).ready(function(){
	$(".input-alert").click(function(e){
		e.preventDefault();
		$row = $(this).parents(".row");
		$row.removeClass("show-alert");
		$row.find("input:first").focus();	
	});
	
	$("input").focus(function(e){
		$row = $(this).parents(".row");
		
		if ($row.hasClass("show-alert")){
			$row.removeClass("show-alert");
		}
	});
});

