$( function(){
    $('.fondo a','#header').click( function(){
        $.post(WEBROOT+'/post.php',
            {accion:'header-fondo', css: jQuery(this).attr('class')}, function(r){
                $('body').removeClass( $('body').attr('class') ).addClass( r )
            })
    })
})



