$(document).ready(function() {
	$('a.qtip').click(function(){return false});
	$('a.qtip').each(function(){
		var pic = $(this).attr('rel');
		$(this).qtip({
		position: { corner: { target: 'bottomLeft', tooltip: 'bottomRight'} },
		content: {text:'<img src="http://www.geax.com/wp-content/uploads/products/'+ pic +'" alt="">'},
		style: { 
				width: 405,
		      background: '#4b4b4d',
		      color: 'fff',
		      border: {
		         width: 4,
		         radius: 5,
		         color: '#a89825'
		      },
		      name: 'dark' // Inherit the rest of the attributes from the preset dark style
		   }

   });

	});
});
