/**
 *  Verschiedenen Javascript Funktionen für das Seniorenportal
 *  @ Intabo GmbH 2008
 *  
 */

/*****************************************************************/

$(function(){
    /*** Form field hints ***/
    $(".form_hint").hide();
    var hint = $(".form_help").attr("tabindex", 0);
    /** einblenden **/ 
    hint.bind("click keypress", function(e){
         /**
    	  *   Tastatursteuerung ermöglichen
    	  */
    	if (!e){
            e = window.event;
        }
        if (e.type) {
            eventType = e.type;
        }
        if (e.which) {
            tastenCode = e.which;
        } 
        else if (e.keyCode) {
            tastenCode = e.keyCode;
        }
        // Function bei Klick, "Enter" oder "Space" ausführen 
        if(e.type == "click" || tastenCode == 32 || tastenCode == 13) {
            $(this).next('.form_hint').toggle('fast');
        }
    });
});

