  $(document).ready(function() {
            // Bildwechsel Nein
            $('.nope')
                .livequery(function() {
                    $(this)
                        .hover(function() {
                            $(this).attr("src", $(this).attr("src").split(".").join("_aktiv."));
                        }, function() {
                            $(this).attr("src", $(this).attr("src").split("_aktiv.").join("."));
                        });
            });
            
           // Stimme für Nein
           
           $(".nope")
                .livequery(function() {
                    $(this)
                       .click(function(e){
                         // stop normal link click
                         e.preventDefault();
                         // send request
                         $.post("aj.jugend.php", {action:$(this).attr("id")}, function(xml) {
                           // format and output result
                           $("#bewerten_nope").html( $("nope", xml).text() );
                           $("#bewerten_aloi").html( $("aloi", xml).text() );
                           $("#bewerten_sterne").html( $("sterne", xml).text() );
                         });
                       });
                });
           
           // Bildwechsel Ja
            $('.aloi')
                .livequery(function() {
                    $(this)
                        .hover(function() {
                            $(this).attr("src", $(this).attr("src").split(".").join("_aktiv."));
                        }, function() {
                            $(this).attr("src", $(this).attr("src").split("_aktiv.").join("."));
                        });
            });
            
           // Stimme für Ja
           $(".aloi")
                .livequery(function() {
                    $(this)
                       .click(function(e){
                         // stop normal link click
                         e.preventDefault();
                         // send request
                         $.post("aj.jugend.php", {action:$(this).attr("id")}, function(xml) {
                           // format and output result
                           $("#bewerten_nope").html( $("nope", xml).text() );
                           $("#bewerten_aloi").html( $("aloi", xml).text() );
                           $("#bewerten_sterne").html( $("sterne", xml).text() );
                         });
                       });           
                });
  });