$(function(){
	
	$('#FORM_ZIP').keyup(function(){
		var maxlimit = 5;
		var myval 	 = $(this).val();
		var charcnt	 = myval.length;        
		if(charcnt>=maxlimit) $(this).val(myval.substring(0, maxlimit));
	});
	
	function refreshForm(){
		if($('#FORM_PRODUCT').val()=="bigdream"){
			$('.smalldream').hide();
			$('.month').hide();
			$('.bigdream').show();
		}else if($('#FORM_PRODUCT').val()=="month"){
			$('.bigdream').hide();
			$('.smalldream').hide();
			$('.month').show();			
		}else{
			$('.bigdream').hide();
			$('.month').hide();
			$('.smalldream').show();
		}
		
		if($('#FORM_PAYTYPE').val()=="lastschrift"){
			$('.payment_lastschrift').show();
		}else{
			$('.payment_lastschrift').hide();
		}
	}
	
	refreshForm();
	
	$('#FORM_PRODUCT').change(function(){
		refreshForm();
	});
	
	$('#FORM_PAYTYPE').change(function(){
		refreshForm();
	});
	
	$('#FORM_MESSAGE').focus(function(){
		$(this).animate({ 'height':100 });
	}).blur(function(){
		$(this).animate({ 'height':50 });
	});
	
});
