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

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