;(function($) {
$(document).ready(function(){
	// Custom qTip Tooltips (used in shop)
	$('a.preview').each(function(){
		// Create image content using websnapr thumbnail service
	    var content = '<img class="preview-image" src="';
	    content += $(this).attr('rel');
	    content += '" width="auto" height="300px" alt="Loading thumbnail..." />';
		
		// Setup the tooltip with the 'content' variable
		$(this).qtip({
			content: content,
			position: {
				target: 'mouse',
				adjust: {
					mouse: true,
					screen: true
				}
			},
			style: {
				name: 'dark',
				width: { max: 650 },
				border: {width: 5},
				padding: 0,
			}
		});
	});
});
})(jQuery);