$(document).ready(function(){
	$(".onebox").click(function() {
	  window.location = $(this).find("h3:first a:first").attr("href");
	});

  $(".onebox").hover(
    function() {
      $(this).addClass("hover");
    },
    function() {
      $(this).removeClass("hover");
    }
  );
});

$(document).ready(function(){
	$(".onebox2").click(function() {
	  window.location = $(this).find("h3:first a:first").attr("href");
	});

  $(".onebox2").hover(
    function() {
      $(this).addClass("hover");
    },
    function() {
      $(this).removeClass("hover");
    }
  );
});
