(function($) {
$(document).ready(function() {
    $(".site_table").each(function(i) {
        var s = i+1;
        $(this).find(".wire").mouseover(function() { $(this).addClass('over'); });
        $(this).find(".wire").mouseout(function() { $(this).removeClass('over'); });
        $(this).find(".wire").each(function(y) {
            var e = y+1;
            $(this).click(function() {
                $(this).parent().parent().parent().parent().parent().next().load("blocks/"+s+"_"+e+".html");
            });
        });
    });
});
})(jQuery);