$(document).ready(function() {
   $(".must_see_list a").qtip({
	  position: {
		  corner: {
			 target: 'topMiddle',
			 tooltip: 'bottomLeft'
		  }
	   },
	   show: { effect: 'fade' },
	   hide: { effect: 'fade' },
	   style: { 
		  width: 200,
		  padding: 10,
		  background: '#f7f2f2',
		  color: '#193260',
		  textAlign: 'left',
		  border: {
			 width: 1,
			 radius: 5,
			 color: '#cccccc'
		  },
		  tip: { corner: 'bottomLeft' }
	   }
	});
});