[b]@hamburgerkid[/b]

I viewed your page

and it does seem to be hiding. And I also see that you are using a setTimeout function for your WVM

so let's try using a timeout also for your sliding menu:
In your sliding js, try to replace:
[quote]if (!attachOnLoadHandler(function(){sideslide();})) window.onload = function(){sideslide();};[/quote]
with this timeout
[quote]setTimeout("sideslide()",7000);[/quote]
the timeout activates the trick after 7 seconds. Originally, we use onload instead of timeout to make sure that the trick loads last becoz sometimes it won't work correctly in IE if it loaded too early. To change the number of seconds the timeout waits to activate the slide, just change the number 7000, to a higher or lower number. 1000 = 1 second
Last edited by shakiro214 (2008-05-27 01:39:39)