$( function() {
	
	

	/**
	 * Script handling the voucher fields on signup page
	 */
	if ($('#showVoucherFields').attr('id')) {
		
		if($('#voucherError').text().length==0){
			$('.voucherField').hide();
		}
				
		$('#showVoucherFields').bind('click',
				function(event) {
					$('.voucherField').toggle();
				});
	
	}
	
	
	
})