/* $Id: orgChart.js 1541 2010-02-08 17:57:52Z cc121 $ */

$(document).ready(function(){ 
	   
    $(".keyPersonnel2").bind("click", function(e){      
      var link = $(this).find("p a").attr("href");
      	if( link != null ) {
     		document.location = link;
		} else {
			return false;
		}
    });
    
    $(".keyPersonnel2").hover(function () {
      $(this).addClass("keyPersonnelHover");
    }, function () {
      $(this).removeClass("keyPersonnelHover");
    });

  });


