// JavaScript Document
// Take the links within the boxes and turn the entire box
// into a link with that link's target as the onclick event
// June 9, 2007
// Rob McAlister
// variable a contains the anchor
linkBoxes = function () {
  jQuery("div.boxes").each(function(){
    var a = jQuery("a",this).attr("href");
    jQuery(this).click(function(){location.href=a;});
    jQuery(this).hover(function(){
      jQuery(this).addClass("hovering");
      },function(){
      jQuery(this).removeClass("hovering");
    });
  });
}
toolBoxes = function () {
jQuery('.toolbox').hover(
    function(){},
    function(){$(this).toggleClass('itemhidden').prev().toggleClass('itemhidden');}
    ).prev().hover(
    function(){
    jQuery(this).toggleClass('itemhidden').next().toggleClass('itemhidden');},
    function(){});
}
