//automatic redirect
redirTime = "2500";
redirURL = "/";

function redirTimer() {
	self.setTimeout("self.location.href = redirURL;",redirTime);
}

//more/less for bio text
$(document).ready(function()
{
  //hide the all of the elements with class moretext
  $(".moretext").hide();
  
  //show the more link for users with javascript enabled
  $(".morelesslink").show();
  
  //toggle the content to be displayed
  $(".morelesslink").click(function()
  {   
    
      if ($(this).prev(".moretext").is(":hidden"))
               {
                    $(this).html("−");
                    $(this).prev(".moretext").slideToggle("slow");
                    $(this).addClass("less");
                    $(this).removeClass("more");
               } else {
                   $(this).html("+");
                   $(this).prev(".moretext").slideToggle("fast");
                   $(this).addClass("more");
                   $(this).removeClass("less");
               }
                
  });
  
  });

// independently show and hide
$(document).ready(function() {
  $('div.toggle:eq(0) > div').hide();  
  $('div.toggle:eq(0) > h2').click(function() {
    $(this).next().slideToggle("slow");
  });
});



  
  