Been playing around with JQuery alot lately, really enjoying it. It takes away alot of the pain of doing things in javascript. I was talking to some guys at work today about what it can do, them being difficult were mainly pointing out you could do it all in javascript anyway, which is true, but its hardly going to do something you cant do in javascript. But what it does do is enable you to do it much easier. Animations for example, you could use timeouts to move things gradually, or you can use $("#someId").animate();, which is obviously way easier. And with more people using JQuery instead of writing their own stuff, code becomes more readable and maintainable.
Alot of this website has been an experiment for me in using JQuery, so somethings could be done better, but its all part of the learning process for me. The only real area I havent explored properly is the AJAX functions, but apart from that I've been using the other parts quite alot. The photo gallery has some of the more advanced JQuery on the website, it handles basically all of it. I combined that with a ASP.net image resizer and the gallery slide view was basically done. Next thing I plan on doing is the list view, which will show one gallery at a time and allow the user to scroll through it. It will most likely also use lots of JQuery.