Okay, so now I fixed it. but having some problems with the hide &
show.
Jquery code:
<script>
$(document).ready(function(){
$("li").hide()
$("p.subtitle").hide()
$("p.copy").hide()
$("p[id=about]").hide()
var $i=500;
$("li:eq(0)").show($i, function(event){
$i = $i+150;
$(this).next().show($i, arguments.callee, function(event){
});
$("p.subtitle").show(5250)
$("p.copy").show(5250)
});
$("a.menuitem").click(function(event){
$("a.menuitem").removeClass("selected");
$(this).addClass("selected");
if($("a.menuitem[id=home]"))
{
$("p.body").hide();
$("p.body[id=home]").show();
}
if($("a.menuitem[id=about]"))
{
$("p.body").hide();
$("p.body[id=about]").show();
}
event.preventDefault();
});
});
</script>