jQuery animar elemento SVG

Eu tenho um svg no meu aplicativo. Gostar

<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>

Eu tenho um elemento svg chamado '1_dice'. Em um botão HTML, clique em Gostaria de animar o elemento de acordo com os parâmetros. Gostar

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

Eu tentei isso, mas isso não funciona ...

questionAnswers(2)

yourAnswerToTheQuestion