// JavaScript Document
/* 
------------------------------------------------------------------
Title:			leopold.js
Date:			11/3/08
Version:		1.01
Copyright:		Copyright (c) 2008
Author:			Phil Puleo, Bill Bailey
Company:		Arizona State University
Description: 	Handles all Leopold site-specific behaviors.
Dependencies:	jquery 1.6 or higher
------------------------------------------------------------------
*/
$(document).ready(function(){
  
  //------ Start Logo Replacement ------//
  $("#asu_logo a").attr("href","http://ihr.asu.edu");
  $("#asu_logo img")
  .attr("src","http://ihr.asu.edu/sites/all/themes/asuzen/images/custom_logo.png")
  .css({width:"316px",height:"61px"});
  
  function printmail(local,domain) {
	document.write("<a href=\"mailto:"+local+"@"+domain+"\">"+local+"@"+domain+"</a>");
}

  $("ul#insertmail").html("<li>Joan McGregor (<a href='mailto:joan.mcgregor@asu.edu'>joan.mcgregor@asu.edu</a>), ASU Professor of Philosophy</li><li>Dan Shilling (<a href='mailto:dan.shilling@asu.edu'>dan.shilling@asu.edu</a>), with IHR</li>");

});
