$(function(){
    /* mainnav */
    $("ul.navi ul").parent().hover(function(){
        $(this).children("a").addClass("hover").siblings("ul").show();
    },function(){
        $(this).children("a").removeClass("hover").siblings("ul").hide();
    });

    /* default-werte inputs */
    $(":text[title], textarea[title]").each(function () {
        var tmp = $(this);
        if (!tmp.val()) {
            tmp.val(tmp.attr("title"));
        }
    }).focus(function () {
        var tmp = $(this);
        if (tmp.val() === tmp.attr("title")) {
            tmp.val("");
        }
    }).blur(function () {
        var tmp = $(this);
        if (!tmp.val()) {
            tmp.val(tmp.attr("title"));
        }
    });
    $("form").submit(function () {
        $(this).find(":text[title], textarea[title]").each(function () {
            var tmp = $(this);
            if (tmp.val() === tmp.attr("title")) {
                tmp.val("");
            }
        });
    });

});

