/*
The following dictionary fields can be set to customiie the reCaptcha Widget
Original: http://recaptcha.net/apidocs/captcha/client.html

Key                 I Possible values     I Default value I Meaning
--------------------+---------------------+---------------+------------------------------------------------------
theme               I 'red' | 'white' |   I 'red'         I Defines which theme to use for reCAPTCHA. The 
                    I 'blackglass' |      I               I red, white, blackglass, and clean themes are 
                    I 'clean' | 'custom'  I               I pre-defined themes where reCAPTCHA provides the 
                    I                     I               I user interface. In the custom theme, your site has 
                    I                     I               I full control over the reCAPTCHA appearance.
--------------------+---------------------+---------------+------------------------------------------------------       
lang                I Any supported       I 'en'          I Which language is used in the interface for the
                    I  language code.     I               I pre-defined themes. The following languages are
                    I                     I               I supported:
                    I                     I               I Language    Code
                    I                     I               I ----------------       
                    I                     I               I English     en
                    I                     I               I Dutch       nl
                    I                     I               I French      fr
                    I                     I               I German      de
                    I                     I               I Portuguese  pt
                    I                     I               I Russian     ru
                    I                     I               I Spanish     es
                    I                     I               I Turkish     tr
                    I                     I               I 
                    I                     I               I If the language of your site isn't supported, you can
                    I                     I               I always use custom theming to put reCAPTCHA in your
                    I                     I               I language.
--------------------+---------------------+---------------+------------------------------------------------------
custom_translations I A dictionary of     I null          I Use this to specify custom translations of
                    I translations        I               I reCAPTCHA strings. More detailed documentation is
                    I                     I               I on the wiki.
--------------------+---------------------+---------------+------------------------------------------------------                    
custom_theme_widget I A string with the   I null          I When using custom theming, this is a div element 
                    I ID of a DOM         I               I which contains the widget. See the custom theming 
                    I element             I               I section for how to use this.
--------------------+---------------------+---------------+------------------------------------------------------
tabindex            I any integer         I 0             I Sets a tabindex for the reCAPTCHA text box. If other
                    I                     I               I elements in the form use a tabindex, this should be
                    I                     I               I set so that navigation is easier for the user
*/

var RecaptchaOptions = {
   //theme : 'clean', // hat leider nicht die Anleitung, wie das Widget auszufuellen ist
   theme: 'blackglass',
   lang: 'de',
   tabindex : 0
};

