// Roll down effect
  $(document).ready(function(){
  /*$(".text").show("slow"); 
  	$("#nav > ul > li > a").click(function() {
  		$(".text").show("slow");
		});*/
  });

displayYear = function() {
var currentTime = new Date();
document.write(currentTime.getFullYear());
}

setCurrent = function (current) {
  var thePage = document.getElementById( current );

  /* Check if the class is already there */
  if (!thePage.className.match(new RegExp('\\bcurrent\\b'))) {
    thePage.className += ' currentPage';
  }

  thePage.className = "currentPage";

}