$(document).ready(function() {
  $(".block .item").each(function() {
    $(this).click(function() {
      window.location = $(this).find("a:first").attr("href");
    });
  });
  $("#primary-navigation li > ul").each(function() {
    $this = $(this);
    $this.find("ul").css("left", $this.width() - 15);
  });
});

