$(document).ready(function(){
    //set the latest work's image to the index page 
    $('#whole_content').css('background-image', 'url('+$('#latest_image').text()+')');
    $('#whole_content').css('background-repeat', 'no-repeat');
    
    //set the latest work's title to the bottom of the index page 
    //$('#footer .description').text('\''+ $('#latest_title').text()+'\'');
    
    //set the latest work's url to the link near the title
    //$('#footer .view a').attr('href', $('#latest_link').text());
});

