$(document).ready(function() {
	if(window.location.href.indexOf("people")>-1) {
      $('.people_thumb_link').hover(function(e) {
	      if($.browser.msie) {
	         $('#popup'+this.id).css({display: 'block', visibility: 'visible', position: 'absolute', top: $(this).position().top-61, left: $(this).position().left+63})
	      }else {
		      $('#popup'+this.id).css({display: 'block', visibility: 'visible', position: 'absolute', top: $(this).position().top-61, left: $(this).position().left+63});
		   }
      }, function() {
         $('#popup'+this.id).css({display: 'none', visibility: 'hidden'});
      });
	}

   if(window.location.href.indexOf("home")>-1) {
   // hides the slickbox as soon as the DOM is ready
   // (a little sooner than page load)
   $('.introtext').hide();
   $('a#toggle-introtext').click(function() {
   //document.getElementById("more_intro").src='/inc/img/less_button.gif';
   $('.introtext').slideToggle(400);
   return false;
   });
	}

   if(window.location.href.indexOf("news")>-1 || window.location.href.indexOf("resources")>-1) {
   // hides the slickbox as soon as the DOM is ready
   // (a little sooner than page load)
   $('.newsmore').hide();
   $('a.toggle-news').click(function() {
   //document.getElementById("more_intro").src='/inc/img/less_button.gif';
   
   $('#'+this.id+'newsmore').slideToggle(400);
   return false;
   });
	}

   if(window.location.href.indexOf("people")>-1) {
   // hides the slickbox as soon as the DOM is ready
   // (a little sooner than page load)
   $('.readmore1').hide();
	$('.readmore2').hide();
$('.readmore3').hide();
   $('a.toggle').click(function() {
   //document.getElementById("more_intro").src='/inc/img/less_button.gif';
   $('.'+this.id).slideToggle(400);
   return false;
   });
	}

});
