function ambilight(image, speed) { $.getJSON("average.php?file="+$(image).attr('src'), function(data) { $(image).parent().animate({backgroundColor: data.average},speed); }); }
