$(document).ready(function() { 
    $('ul#nav').superfish(); 
    $('#news-box').innerfade({ animationtype: 'fade', speed: 550, timeout: 4000, type: 'random', containerheight: '1em' }); 
    $('#main p + ul').css({
    	marginTop: "-2em"
    });
    $('#sidebar h2:first-child').css({
    	marginTop: "0"
    });
    $('#nav li ul li:first-child').css({
    	border: "none"
    });
    //$("#main ul li:nth-child(odd)").addClass("odd");
    //$("#main ul li:nth-child(even)").addClass("even");
    $('#menu ul').hover(function(){
     	$(this).prev().addClass('hover');
     }, function(){
     	$(this).prev().removeClass('hover');
     });
});
