function checkInput() {
	$("#ergebnisprognose_betrag").trigger('blur');
}


$(document).ready(function(){
  $('#ergebnisprognose_betrag').blur(function(){
	  $('#ergebnisprognose_betrag_hidden').val($('#ergebnisprognose_betrag').val());
	  $('#ergebnisprognose_betrag').formatCurrency({region: 'de-DE', positiveFormat:'%n %s', decimalSymbol:',',digitGroupSymbol:'.', symbol: currency_symbol });
	  
  });
  $("#ergebnisprognose_betrag").trigger('blur');
  
  $('input[name="versand[]"]').click(function(){

	  if($('input[name="versand[]"]:checked').val() == 'per_mail'){
	    $('#req_street').empty();
	    $('#street').attr('class','text');
	    $('#req_plz').empty();
	    $('#req_ort').empty();
	    $('#zip').attr('class','text');
	    $('#city').attr('class','text');
	    $('#req_telefon').empty();
	    $('#phone').attr('class','text');
	  }else{
		  if($('input[name="versand[]"]:checked').val() == 'per_post'){
		    $('#req_street').empty().append('*');;
		    $('#street').attr('class','text input required');
		    $('#req_plz').empty().append('*');
		    $('#req_ort').empty().append('*');
		    $('#zip').attr('class','text input required');
		    $('#city').attr('class','text input required');
		    $('#req_telefon').empty().append('*');;
		    $('#phone').attr('class','text input required');
		  }
	  }

	});
  
	$("#form_gf").validate({
	    errorClass: "warning"
	  });

	$('#per_mail').attr('checked','checked');

	
	$("#stars-wrapper1").stars({
		disabled: true,
		captionEl: $("#stars-cap"),
	});
	
	$("#stars-wrapper2").stars({
		cancelShow: false,
		captionEl: $("#stars-cap2"),
	});
	
	var rate = $( "input[name=voting_rate]" ),
		name = $( "#voting_name" ),
		email = $( "#voting_mail" ),
		text = $( "#voting_text" ),
		allFields = $( [] ).add( rate ).add( name ).add( email ).add( text ),
		tips = $( ".validateTips" );

function updateTips( t ) {
	tips
		.text( t )
		.addClass( "ui-state-highlight" );
	setTimeout(function() {
		tips.removeClass( "ui-state-highlight", 1500 );
	}, 500 );
}

function checkLength( o, n, min, max ) {
	if ( o.val().length > max || o.val().length < min ) {
		o.addClass( "ui-state-error" );
		updateTips( "Länge " + n + " muss zwischen " +
			min + " und " + max + " Zeichen sein." );
		return false;
	} else {
		return true;
	}
}

function checkChecked( o, n) {
	if (o.val() == 0) {
		o.addClass( "ui-state-error" );
		updateTips("Bitte eine "+n+" auswählen");
		return false;
	} else {
		return true;
	}
}

function checkRegexp( o, regexp, n ) {
	if ( !( regexp.test( o.val() ) ) ) {
		o.addClass( "ui-state-error" );
		updateTips( n );
		return false;
	} else {
		return true;
	}
}

	
	
	$( "#dialog-form" ).dialog({
		autoOpen: false,
		height: 375,
		width: 350,
		modal: true,
		buttons: {
			"Bewerten": function() {
				var bValid = true;
				allFields.removeClass( "ui-state-error" );

				bValid = bValid && checkChecked( rate, "Bewertung");
				
				bValid = bValid && checkLength( name, "Name", 3, 100 );
				bValid = bValid && checkLength( email, "E-Mail", 6, 80 );
				
				bValid = bValid && checkLength( text, "Ihrer Rezension", 10, 5000 );

				// From jquery.validate.js (by joern), contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/
				bValid = bValid && checkRegexp( email, /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i, "z.B. name@mail.de" );

				if ( bValid ) {
					$( "#voting" ).submit(); 
					$( this ).dialog( "close" );
				}
			},
			"Abbrechen": function() {
				$( this ).dialog( "close" );
			}
		},
		close: function() {
			allFields.val( "" ).removeClass( "ui-state-error" );
		}
	});

	$( ".selfvoting_btn" )
		.button()
		.click(function() {
			$( "#dialog-form" ).dialog( "open" );
		});

	
	
});

