// functions to control the e-mail link in the header
$(document).ready(function(){
		$("a.mail").click(function(){
   		$("ul.mailList").slideDown("slow");
       	return false;
     								});
   		$("a.notseen").click(function(){
   		$("ul.mailList").slideUp("slow");
       	return false;
     								});
		
		$(function(){
		$('a.new-window').click(function(){
			window.open(this.href);
				return false;
		});
});
});



