$(document).ready(function() {             
    $(".colorbox").click(function () {        
        var farbe = $(this).attr("id");
        $.get('colorsetter.php?color='+farbe);
        hexfarbe = '#'+farbe;        
        $(".changecolor").css('background-color', hexfarbe);                                                        
    });         
 });
