I have a custom extension that includes jquery through layout xml like so:\[code\]<reference name="head"><action method="addJs"><script>jquery/jquery-1.8.1.min.js</script></action></reference>\[/code\]Other extensions that use jquery need to be loaded after my module so jquery remains on top.By default Magento loads everything alphabetically. Is there any way to specify a sort order for extensions ?One way is to override page.xml in my theme and manually include jquery into the head or I can set every custom module to depend on the module I want on top for ex:\[code\]<depends><Package_JQueryLib /></depends>\[/code\]Any other recommendations?