Always Put Scripts in CDATA
An errant > or < in your code will give you strange and unhelpful errors if your script code isn't in a CDATA section. Always format your script tags with a CDATA section to avoid these time wasters:
<script type="text/vnd.editme.js"><![CDATA[
// code goes here
]]></script>