You'd probably know better than me, but the limited sources I have access to indicate it's just the order in which they're being loaded...?
I'm told that I should, theoretically, be able to use 1.3.2 without issue if it loaded as the first element of the page so that I could place my plugin after.
Does this make any sense? I've seen it mentioned a few times in online discussion, but to call me an amateur or beginner programmer would be exceedingly generous. I feel like I'm walking down a dark hallway bumping into things until I find the end.
If jquery.cookie.js will work on jquery 1.3, then you could try adding the following, which uses a helper function (jq_preload) for the purposes of doing things after jquery loads.
This has been working fine on my site (using a modified version of the Guild Wars template), but I get the following error using the same code in the Star Wars: Coruscant template:
Uncaught ReferenceError: jq_preload is not defined
Looking at your code, I'm seeing a crash before it gets to the jq_preload portion. It's crashing in the event formatting portion (probably due to the lack of an upcoming event).
You could either wrap that whole thing in a try-catch block to prevent it from breaking scripts on the rest of the page.
I didn't mean to sound defensive, just wanted to be sure we're all clear and on the same page. I also know that you don't officially support advanced layouts and such, so I try to keep my problems as simple as I can.
All I want right now is to load the plugin. If my script/code sucks, then I fully accept responsibility, but I think this one is out of my hands.
Alrighty, I've found the cause. That block with the jq_preload call, go ahead and put that *after* the closing </head> tag. The Advanced Layout parser automatically inserts the dkpsystem.js script at the end of the </head>.