/* page-specific js for /kontakt/
*/
$(document).ready(
    function(){
        $("#spaminfo").insertBefore(".submitbutton");
        $("#spaminfo").hide();
        $("#infonotice").html('<a href="#">Mehr Info zu dieser Maßnahme einblenden</a>');
        $(".captcha #infonotice a").toggle(
            function(){
                if (jQuery.support.opacity) {
                    $("#spaminfo").fadeIn("slow");
                } else {
                    $("#spaminfo").show();
                }
                $(this).html('Info ausblenden');
                return false;
            },
            function(){
                if (jQuery.support.opacity) {
                    $("#spaminfo").fadeOut("slow");
                } else {
                    $("#spaminfo").hide();
                }
                $(this).html('Mehr Info zu dieser Maßnahme einblenden');
                return false;
            }
        );
        $("#kontaktform input[@type=text], #kontaktform textarea").focus(
            function(){
                $(this).addClass('inp-focus');
            }
        );
        $("#kontaktform input[@type=text], #kontaktform textarea").blur(
            function(){
                $(this).removeClass('inp-focus');
            }
        );
});


