// JavaScript Document

function linkWacth(objectName) {
 $(objectName).click(function() {
  location = $("a", this).attr("href");
  return false;
 });
}


$(document).ready(function() {

linkWacth (".entry .sectors .item h3");

});
