jQuery animuje element SVG

Mam aplikację svg. Lubić

<svg id="gt" height="450" width="300" xmlns="http://www.w3.org/2000/svg">
<image id="1_dice" x="0" y="420" height="30" width="30" xlink:href="images/1_coin.png" />
</svg>

Mam element svg o nazwie „1_dice”. W kliknięciu przycisku HTML chciałbym animować element zgodnie z parametrami. Lubić

$('#btn').click(function(){
     $('#1_dice').animate({'x':200},2000);
});

Próbowałem tego, ale to nie działa ...

questionAnswers(2)

yourAnswerToTheQuestion