$(document).ready(function()    {
    $('a.sen-wheel-button').hover(function(){
        var sen_wheel_id = $(this).attr('rel');
            sen_wheel_content = $(sen_wheel_id).text();
        $('#sen-wheel-content').text(sen_wheel_content);
    return false;
    })
})
