$(function() {
  $('.pet_mats').hover(
    function () {
      $(this).find(".view_choices").fadeIn("slow");
    }, 
    function () {
      $(this).find(".view_choices").fadeOut("slow");
    }
  );

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