/**
 * @author Tim
 */
function formEvents() {
	
	$(".help").each(function (i) {
		$(this).css("display","none");
	})
	
	$('#submit').click(function(){
				$("#form").submit();
			})
	 $("input").each(function (i) {
	 	var type= $(this).attr('type');
		if (type == "text" || type == "password") {
			$(this).focus(function(){
				$(this).css("background","#FBFBFB");
				$(this).css("border-color","#CD9091");
				$(".help_" + $(this).attr('id')).css("display","");
			})
			$(this).blur(function(){
				$(this).css("background","#FFF");
				$(this).css("border-color","#ccc");
				$(".help_" + $(this).attr('id')).css("display","none");
			})
		}
				
	})
}
