jQuery(document).ready(function(){

	var myContents = [];
	
	$('.logo').each(
						
		function(i) {
			myContents[myContents.length] = $(this).next('.tooltip');
		    $(this).qtip({
			  content: myContents[i],
			  hide: 'mouseout',
			  show: 'mouseover',
			  style: { 
				  border: {
					 width: 0,
					 radius: 0
				  },
			  	  width: 266,
				  padding:0,
				  background:'none'
			   },
			  position: {
				  corner: {
					  target: 'topMiddle',
					  tooltip: 'bottomMiddle'
				   },
				   adjust: { x: 50, y: 50 }
				},
			  hide: { when: 'mouseout', fixed: true }
			  
		});
	});
	
});