// maps email addresses to the domain to fool robots
function correspond(target,subject,domain) {
 var command="mailto:"+target;
 if(domain!=undefined) command=command+"@"+domain;
 else command=command+"@agogic.com";
 if(subject!=undefined) command=command+"?subject="+subject;
 window.location.replace(command);
}

// gets the revolving image name based on the seconds of minute
function getRevolvingImageName(){
	name=new Date().getSeconds();
	name=name.substring(name.length-1);
	if(name){name="0"+name;}else{name="00";}
	return name+".jpg";
}
