// shop links
	jQuery(function() {
		jQuery("a[href*='shopthehappygardener.info']").click(function() {
			alert("When entering your details on the checkout page, please use DOR001 in the Consultant Name field. Thank you!");
			return true;
		});
	});

// hover descriptions
	jQuery(function() {
			jQuery(".product-listings ul li img").hover(
				function() {
					jQuery(this).parentsUntil("li").next("span").slideDown('slow');
				},
				function() {
					jQuery(this).parentsUntil("li").next("span").slideUp('slow');
				}
			);
	});

	jQuery(function() {
			jQuery("span.definition").hover(
				function() {
					jQuery("span",this).slideDown('slow');
				},
				function() {
					jQuery("span",this).slideUp('slow');
				}
			);
	});