jQuery(document).ready(function($) {

// MENU DROPDOWN

    $('#tag-menu li').hover(function(){
        $(this).find("a").addClass("active");
        $(this).find(".children").show();

    });

    $('#tag-menu li').mouseleave(function(){
        $(this).find("a").removeClass();
        $(this).find(".children").hide();
    });




// SEARCH

    $('#s').click(function(){
        if ( $(this).val()== "suchen"){$(this).val("");$(this).addClass("typing")};
    });

    $('#s').focusout(function(){
        if ( $(this).val() == ""){$(this).removeClass("typing");$(this).val("suchen");};
    });

})
