$(document).ready(function(){

	// apply hover on subnav2 list items
	// not working on all pages so using :hover instead (but not IE6)
	$("div.subnav2 ul li.item").hover(function() {
		$(this).addClass("hover");

	}, function() {
		$(this).removeClass("hover");
	});

	// apply people dropdowns
	$(".clickit").click(function() {
	    if ( $(this).next(".personDetails").hasClass("open") ) {
			$(this).next(".personDetails").removeClass("open");
			$(this).next(".personDetails").slideUp();
        } else if ( $(this).next(".personDetails").not(".open") ) {
	        $(".personDetails").slideUp();
	        $(".personDetails").removeClass("open");
        	$(this).next(".personDetails").slideDown();
        	$(this).next(".personDetails").addClass("open");
  		}
	});

});
