This will be an occasional blog dealing with various web programming issues I've come up against. I've been using the excellent JavaScript library jQuery
I've chosen jQuery because I was immediately taken with it's integration with CSS, as it enables you to perform a set of actions on sets of elements selected from an HTML page. For example the script adds a change in colour to the background property of a list element on mouseover - useful for navigation and menus. This can replace the :hover from CSS with a tasteful glow effect.
For this to work you also need the interface v1.2 plug-in, to extend jQuery's .animate command to work with the CSS background color. And in turn this needs a fix to jQuery (v 1.2.6) to work with interfaces alterations to dequeue - thanks to a post here from Vinçange for that.
I'm sure there is a better, neater, faster way of doing this. Let me know if there is!