$(function() {

  $("span.selfPortrait").hover(showSelf, hideSelf);

	function showSelf() {
		$("img.headerLarge").fadeIn("normal");
		$("img.header").fadeOut("normal");
  }

	function hideSelf() {
    $("img.header").fadeIn("fast");
		$("img.headerLarge").fadeOut("fast");
  }
	
});
