function slider() {
	jQuery(function($) {
    if ($('.teaser').is(".close")) {
        $("#panel").animate({
            top: "-64px"
        },
        {
            duration: "normal"
        });
        $('.teaser').toggleClass("close");
    }
    else {
        $("#panel").animate({
            top: "0px"
        },
        {
            duration: "normal"
        });
        $('.teaser').toggleClass("close");
    }
    return false;
   });
};


jQuery(function($) {
    $('.teaser').click(function() {
	slider();
    });
});