I'm pretty much a novice to the world of Ruby on Rails, a few weeks back I followed Lynda's good ruby on rails guide so I kinda know how to set up a project etc. Anyway, I made an website in html/css but wanted to do it in rails after all so I went to work. I love how you can just "dump" files in folders and rails just picks them out but I also had a few lines of javascript code on my site to "activate" the jquery following. It was in my header
<script type="text/javascript" id="sourcecode">
$(function(){
$('.scroll-pane').jScrollPane({
showArrows: false,
autoReinitialise: true
});
});
</script>
So the simple question now is, where do I put this code since rails doesn't really have an .