$(function(){
  $('a.worktime').live('click', function(){
    var a = $(this);
    $.get($(this).attr('href'),{},function(html){
      $('#common_layer_content').html(html);
      $('#common_layer').css({'top': a.offset().top-200, 'left': a.offset().left-50}).show();
    })
    
    return false;
  })
})

