$(document).ready(function(){
   $('a.seibun').each(function()
   {
      var contents = $(this).attr('rel');
      $(this).qtip(
      {
         content: contents,
         position: {
            corner: {
               tooltip: 'bottomMiddle', // ...and position it center of the screen
               target: 'topMiddle' // ...and position it center of the screen
            }
         },
         show: 'click',
         hide: 'unfocus',
         style: {
            width: 500,
            height: 160,
            padding: 10,
            tip: true,
            color: '#333',
            background: '#FFFFCC'

         }

      }
      ).attr('href', '#');
   });
});
