(function(){
	var doTips;
	doTips = function doTips() {
    return $('.speakerthumb, .seminarthumb, .videothumb').each(function() {
																		
	  if($(this).find('.hoverfull').hasClass('sem4')) {
		  var tipsHeight = 346;
	  } else if($(this).find('.hoverfull').hasClass('sem3')) {
		  var tipsHeight = 328;
	  } else if($(this).find('.hoverfull').hasClass('sem2')) {
		  var tipsHeight = 310;
	  } else {
		  var tipsHeight = 292; 
	  };
	  
	  if($(this).hasClass('speakerthumb')) {
		  var tipsAdjustY = 0;
	  } else if($(this).hasClass('seminarthumb')) {
		  var tipsAdjustY = 0;
	  } else if($(this).hasClass('videothumb')) {
		  var tipsAdjustY = /*110*/0;
	  } else {
		  var tipsAdjustY = 0;
	  };
	  
	  
      return $(this).qtip({
        content: {
          text: $(this).find('.hoverfull').html()
        },
        style: {
          name: 'light',
          tip: 'bottomMiddle',
          width: 550,
          height: tipsHeight,
          border: {
            width: 1,
            color: "#4d4d4d"
          }
        },
        show: 'mouseover',
        hide: {
          target: 'mouseout',
          fixed: true
        },
        position: {
          target: false,
          corner: {
            tooltip: 'bottomMiddle',
            target: 'topMiddle'
          },
		  adjust: {
			screen: 'true',
			y: tipsAdjustY
		  }
        }
      });
    });
  };
  $(document).ready(function() {
    return doTips();
  });
})();