$(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(){
	$(".onehomeblock").click(function() {
	  window.location = $(this).find("h3:first a:first").attr("href");
	});

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

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

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