$(document).ready(function(){
	$(".bannerBox").click(function() {
	  window.location = $(this).find("a:first").attr("href");
	});

  $(".bannerBox").hover(
    function() {
      $(this).addClass("hover");
    },
    function() {
      $(this).removeClass("hover");
      $(".learn-more").remove();  
    }
  );
});
