var $el, $tempDiv, $tempButton, divHeight = 0;

$.fn.middleBoxButton = function(text, url) {

    return this.hover(function(e) {
        $el = $(this).css("border-color", "#F9CA69");
        divHeight = $el.height() + parseInt($el.css("padding-top")) + parseInt($el.css("padding-bottom"));
                
        $tempDiv = $("<div />", {
            "class": "overlay rounded"
        });
                
        $tempButton = $("<a />", {
            "href": url,
            "text": text,
            "class": "lightbox-button rounded",
            "css": {
                "top": (divHeight / 2) - 7 + "px"
            }
        }).appendTo($tempDiv);
                
        $tempDiv.appendTo($el);
        
    }, function(e) {
    
        $el = $(this).css("border-color", "#F9CA69");
    
        $(".overlay").fadeOut("fast", function() {
            $(this).remove();
        })
    
    });
    
}

$(function() {
    
    $(".k_box").middleBoxButton(unescape("Klick hier, um zu den Seiten f%FCr Kids zu gelangen..."), "http://www.zooschule-landau.de/kids/index.htm");
    $(".e_box").middleBoxButton(unescape("Klicken Sie hier, um zu den Seiten f%FCr P%E4dagogen, Eltern, Erwachsene zu gelangen..."), "http://www.zooschule-landau.de/e_seiten/kurz.htm");

});
