// JavaScript Document

$(document).ready(function() {	
		$('.hp').hide();
		
		$('div.verwerf').click(function(){
			$('.feedback_in').val('');	
		 });
			
		$('div.send').click(function(){
			$.send=true;
			$('.feedback_in').each(function(index){
			  if($(this).val().length<2){
				$.send=false;
				$(this).css("border","1px solid #46a6dd");
			}else{
				$(this).css("border","none");
			}
			  });
		if($('.hp').val().length>0){
			$.send=false;
		}
		if($.send){
			$('form').submit();
		}
		 });
	 });
			
