<!--
/*
 * SearchFieldClear
 */
$(document).ready(function() {
    $("#SearchForm_SearchForm_Search").focus(function(){
        if ($(this).val() == "nach Begriff" ) {
            $(this).val("");
        }
    })
    .blur(function(){
        if ($(this).val() == "") {
            $(this).val("nach Begriff");
        }
    });


    /*
     * BetterGoogleAnalyticsTracking
     */
    $('a').click(function () {
        // tell analytics to save event
        try {
            _gaq.push(['_trackEvent', thisel.parents('[id!=""]:first').get(0).id, 'clicked', (thisel.text() || thisel.children('img:first').attr('alt'))]);
        }
        catch (err) {}

        // pause to allow google script to run
        var date = new Date();
        var curDate = null;
        do {
            curDate = new Date();
        } while(curDate-date < 300);
    });

});

-->