$(document).ready( function() {

    $(".ancor").click( function() {
    
        $("#icenter").css("background-color", "#DCE0E7" );
        
        id = $(this).attr('rel');
        
        $(".question").css("background", "none");
        
        $.scrollTo("#" + id, 800, {over:-1} );
        
        $("#" + id).animate({ 'background-color': '#657794'}, 800, function() {
            
            $(this).animate({ 'background-color': '#DCE0E7'}, 800);
              
        });
    
    });
    
    $(".up").click( function() {
        
        $.scrollTo("#questions", 800, {over:-0.2} );
    
    });

});
