function loadContent(Url) {
    $('#rooster_content').load(Url, function() {
        
        $("span.cafe:odd").attr("class","cafe_uneven"); 
        $("span.cafe:even").attr("class","cafe_even"); 
        cursor_clear();  
    }); 
}

function cursor_wait() {
  document.body.style.cursor = 'wait';
}

function cursor_clear() {
  document.body.style.cursor = 'default';
}
