Calling Jquery from Flash?

Calling Jquery from Flash?

I've this function in my html page to highlight some paragraph with the class .neck

<script type="text/javascript">
<!--
$(document).ready(function() {
$('#neck_link').click(function(){
$('.neck').highlightFade({color:'#FFFF… speed: 5000});
});
});

-->
</script>


And in the same page
<p><a href="#" id="neck_link" onclick="return false;">Neck</a></p>


BUT i'd like to call that function from flash.

How do I set up getURL to work with
<a href="#" id="neck_link" onclick="return false;">


I saw somewhere using getURL(javascript:void.. but I can't figure out how to put the id="neck_link" in it.

Thanks All!