$(document).ready(function() {

    $('.quotebutton').live('mouseover mouseout', function(event) {
        if(event.type == "mouseover") {
            $(this).attr("src", $(this).attr("src").split(".").join("_aktiv."));
        } else {
            $(this).attr("src", $(this).attr("src").split("_aktiv.").join("."));
        }
    });
    
    $(".quotebutton").live('click', function(e) {
        // stop normal link click
        e.preventDefault();
        $.post("ajax/quote.php", {action:$(this).attr("id")}, function(xml) {
           $("#bewerten_nope").html( $("nope", xml).text() );
           $("#bewerten_aloi").html( $("aloi", xml).text() );
           $("#bewerten_sterne").html( $("sterne", xml).text() );
        });
    });

});
