$(document).ready(function(){
    if($.cookie("white")) {
        $("body").addClass("white");
    }
	$("#sidebar .menu li a").hover(
	
		function(event){
			// Animate in
			
			$(this).stop().animate({ 
        		paddingRight: "6px"
    	  	}, 200, "easeOutElastic" );
    	  	
		},
		
		function(event){
			// Animate out
			$(this).stop().animate({ 
    	    	paddingRight: "0px"
    	    }, 200, "swing" );
    	    
	});	

});

function change(){
    if($("body").hasClass("white")) {
        $("body").removeClass("white");
        $.cookie("white", null, { path: '/', expires: 1 });
        
    } else {
        $("body").addClass("white");
        $.cookie("white", "true", { path: '/', expires: 1 });
    }
}
