$(function(){
    $('.twitterbox').jTweetsAnywhere({
        username: 'Noffz_CT',
        count: 4
    });
    $("#trigger_suche").click(function(){
        return false;
    });
    $("#kontaktformular input, #kontaktformular textarea").each(function(){
        $(this).focus(function(){
            $(this).prev().addClass("unsichtbar");
        }).blur(function(){
            if($(this).val() == ""){
                $(this).prev().removeClass("unsichtbar");
            };
        });
        //vorbelegte Felder:
        if($(this).val() != ""){
            $(this).prev().addClass("unsichtbar");
        };
    });
    $("#kontaktformular label[for='element_0']").remove();
});
