Oh awesome, yes, JQuery is great, I love it, makes things so much more convenient when doing JS and the plethora of JQuery plugins out there allows you to be that little extra lazy.

Just great being able to just select elements using CSS selectors and then just piling on behaviours, even can save you on using any for loops, I recently added a JQuery based search to a page and I was able to just apply logic to multiple div tags at once without having to iterate through them in a loop. All I need to do to "show" all found search items on a page was this:
var users_found = $(".users-list").children("li:containsIgnoreCase('"+ search_item + "')");
users_found.fadeIn(fade_speed).show();
Might be a useful plugin to play with too, am currently looking at working on my site and adding some JQuery fanciness to it. Though I need to get around fixing a bug, which I've not looked at yet, which I need to stop being lazy and do, given I already believe I know the cause of the bug I've got.