$(function() {
  $('#shades_left').hover(
    function () {
      $(this).find(".shopnow").fadeIn("slow");
    }, 
    function () {
      $(this).find(".shopnow").fadeOut("slow");
    }
  );

	$('.shopnow').click(function() {
		window.open($(this).parent('#shades_left').find('a').attr('href'), '_blank', '');
		return false;
	});
});