I'm using a custom module in my Magento installation, which uses a layout XML file to add some Javascript files into the head section of every page.
This works fine, however these javascript files need to be added AFTER the ones I've already declared in page.xml, however it would seem the XML files are processed alphabetically as opposed to hierarchically!
I've looked through the page/html_head block and there seems to be no native way to set/change the order in which items are included. Without removing the javascript files from my module's XML file and placing them in page.xml, does anyone have any idea how I could ensure the page.xml javascript is added first?