﻿$(function(){

showLateBoundEmailAddress();

$("#logoLinks .logoLink_about").hover(function(){
	$(this).attr('src', 'images/logoLink_about_on.png');
}, function(){
	$(this).attr('src', 'images/logoLink_about_off.png');
});

$("#logoLinks .logoLink_blog").hover(function(){
	$(this).attr('src', 'images/logoLink_blog_on.png');
}, function(){
	$(this).attr('src', 'images/logoLink_blog_off.png');
});

});

function showLateBoundEmailAddress(){
var address = "ashley" + "@" + "ashlilium" + ".com";
$("#lateBoundEmailLink").html(address);
}

function gotoAbout() {
  return;
  clearCurrentContent();
  
  $("#aboutContent").clone().prependTo($("#currentContent")).fadeIn("fast");
}

function clearCurrentContent(){
  $("#content1").fadeOut('fast');
  var oldContent = $("#currentContent *");
  oldContent.fadeOut('fast').detach();
}


function gotoHome(){
  clearCurrentContent();
  
  $("#content1").clone().prependTo($("#currentContent")).fadeIn("fast");
}

function gotoEmail() {
  return;
  clearCurrentContent();
  
  $("#emailContent").clone().prependTo($("#currentContent")).fadeIn("fast");
}

function sendEmail(){

gotoHome();

}



