$(function() {
	$("div.brand").hover(function() {
		$(this).find("img").fadeOut(400);		
	},
	function() {
		$(this).find("img").fadeIn(600);
	}).click(function() {
		var $url = $(this).find('a').attr('href');
		window.location = $url;
	}).each(function() {
		$(this).qtip({
			content: {
				text: $(this).find('div.varietals_tip')
			},
			show: {
				delay: 10,
				effect: {
					length: 50
				}
			},
			hide: 'mouseout',
			position: {
				corner: {
					target: 'bottomMiddle',
					tooltip: 'topMiddle'
				}
			},
			show: {
				effect: {
					length: 600,
					type: 'fade'
				}
			},		
			style: {
				width: 200,
				padding: 5,
				tip: 'topMiddle',
				name: 'red',
				color: '#fff',
				background: '#6F1100',
				border: {
				         width: 5,
				         radius: 0,
				         color: '#990000'
				      }
			}
		});
	});
});