Site looks good, except for 2 things:
- The "next" button at the bottom of the page just kinda sites in a void, you hardly notice it. Looks very much out of place when everything else is framed in a box. May need to have a bar underneath the content that just holds the next & previous buttons, to keep the look consistent.
- The rounded corners on all the boxes are rough, they need to be redone with better anti-aliasing.
Also, in the time that I was waiting for the site to load I could have brewed coffee. There are so many things wrong with the code. You load TWO different versions of jQuery in the header:
radiograffiti.org/no_sleep/wp-includes/js/jquery/jquery.js?ver=1.3.2
and then,
googleapis.com/ajax/libs/jquery/1.4/jquery.min.js
You should only be using the second one, obviously. Then you load a bunch of Javascript files, when in reality, you should load those in the body of your page so they don't slow down the initial load. You want the bare necessities to load first (HTML, CSS) and then have things load as they are needed. Actually, you should seriously consider using Google's asynchronous AJAX libraries API, so that it will load in all this Javascript stuff after document.ready. OK I'm gonna stop now, I feel like a nerd.