[jQuery] Needs help with Growl

[jQuery] Needs help with Growl


Can someone please help me implement growl? I am struggling to find
any documention for a simple implementation of this plugin. I have
tried the standard code
<script type="text/javascript" src="~/javascript/Growl/growl.js"></
script>
<script type="text/javascript" src="~/javascript/Growl/
mootools-1.2b2.js"></script>
<script type="text/javascript">
$(document).ready
(
Growl.Smoke({
    title: &apos;Window.Growl By Daniel Mota&apos;,
    text: &apos;http://icebeat.bitacoras.com&apos;,
    image: &apos;growl.jpg&apos;,
    duration: 2
});
}
</script>
which is what the plugin page implies. Technically, all I want is for
it to appear when the page is loaded. All i keep getting is "Syntax
Error". Thanks in advance for any help.
James