$(function(){
   
   $('#top>ul>li').css('cursor','pointer');
   $('#top>ul>li').hover(function(){
        $(this).switchClass('unmarked','marked',500); 
   },function(){
        $(this).switchClass('marked','unmarked',500);
   });
   $('#top>ul>li,#left>ul>li').click(function(){
        window.location.href = $(this).find('a').attr('href');
   });
   $('#left>ul>li').css('cursor','pointer');
   $('#left>ul>li').hover(function(){
        $(this).switchClass('lightul','darkul',500);
        $('#pageinfo').css('background','url(res/img/wait.gif) center no-repeat');
        $.post('index.php',{q:$(this).find('a').attr('href')},function(data){
            $('#pageinfo').html(data);
            $('#pageinfo').css('background','transparent');
        });
   },function(){
        $(this).switchClass('darkul','lightul',500);
        $.post('index.php',{q:'left'},function(data){
            $('#pageinfo').html(data);
            $('#pageinfo').css('background','transparent');
        });
   });
});


