﻿jQuery(document).ready(function() {
    // Anhänge
    $('.attachement').bind("mouseenter", function(e) {
        $(".teaser-h", this).toggleClass("teaser-over");
    });
    $('.attachement').bind("mouseleave", function(e) {
        $(".teaser-h", this).toggleClass("teaser-over");
    });    
    $('.attachement').bind("click", function(e) {
        window.open($(".teaser-h a", this).attr("href"));
        return false;
    });            
    $('.attachement').css("cursor", "pointer");
});
