Ahh...right you are! Sorry!
Well, after all that, I'm afraid I'm not a jquery user, so the best I could do is make a couple of guesses.
The key to it all is in your jquery.custom.js file, which does thie:
Code:
$(function() {
//Body Load
$.gaTracker('UA-430361-10');
$("#content,#content *").hide();
//User Interaction
$("#header").addClass("cursor").toggle(function() {
$("#content").slideDown("normal");
$("#content *").fadeIn("normal");
},function() {
$("#content").slideUp("normal");
$("#content *").fadeOut("normal");
});
});
So that's basically saying that there is a "toggle" (click on, then click off) on your header div:
Code:
<div id="header" id="me2"></div>
That causes the content div:
Code:
<div id="content">.
...
</div>
to both slide down and fade in.
So...
As I said, *NOT* a jquery user!
But...
Suppose you had *another*
Code:
<div id="messge">click the image</div>
And you used css to position it at the same place the content ends up at.
And then you altered your jquery code there to do this:
Code:
$(function() {
//Body Load
$.gaTracker('UA-430361-10');
$("#content,#content *").hide();
//User Interaction
$("#header").addClass("cursor").toggle(function() {
$("#content").slideDown("normal");
$("#content *").fadeIn("normal");
$("#message").fadeout("normal");
},function() {
$("#content").slideUp("normal");
$("#content *").fadeOut("normal");
$("#message").fadein("normal");
});
});
???
See? Have it do the opposite fading to the content div. Could possibly slide it up and down, too, but I doubt that's really needed.
Hmmm???
But if this doesn't work, try posting in the jQuery sub-forum, this time showing the above JS code, so people don't have to go looking for it.