if(jQuery) {
  jQuery(document).ready(function($){
    jQuery("#illustration-short .popitup")
      .bind('click', function(event){
        event.preventDefault();
      })
      .qtip({
        show: 'mouseover',
        hide: 'mouseout',
        position: {
          corner: { target: 'rightMiddle', tooltip: 'leftTop' }
        },
        style: {
          background: '#ffffff',
          padding: 10
        }   
      }); 
  });
}
