/* Javascript Document for Evan Bartlett. Please do not steal and use for personal use without giving credit first.*/

// Fire when ready
$(document).ready(function(){
	$("#backtotop").fadeOut(300);
	
	window.onscroll = function(){
	var activate = $("#navigation").position().top
		if (activate > 66) {
			$("#backtotop").fadeIn(400);
		} else {
			$("#backtotop").fadeOut(300);
		}
	}
	return false;
});

// Email spam prevention
function mailUs(sDom, sUser){
  return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,"."));
}