I'm currently building www.scenes-online.co.uk/test/
I've got this code sliding up and down the links on hover using jquery...
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3.2"); //load version 1.3.2 of jQuery
google.setOnLoadCallback(function() {
jQuery(
function($) {
$("a.button").hover( function() { $(this).animate({"marginTop": "- 4px"}, "800"); }, function() { $(this).animate({"marginTop": "- 14px"}, "800"); });
});
});
</script>
What i need is for the current page to have it's link in the 'down' state at margin-top:-4px but everything I'm trying is getting rid of my sliding doors...
thanks in advance
Cheers
Stu