function animate(temp) {
	$("#PictureWrapper").fadeOut("slow", function () {$("#HomeImage").attr({src:emp_photos[temp]});}).animate({opacity: 1}, 600); 
	$("#PictureWrapper").fadeIn("slow");
	temp=temp+1;
	if(temp==4){temp=0;}
	setTimeout("animate("+temp+")", 7000);

}

function emailobs (email) { 
	var string1 = email;
	var string2 = "@";
	var string3 = "erbenassociates.com";
	var string4 = string1 + string2 + string3;
	document.location="mail" + "to:" + string4;
}

function disclaimeron(){
	document.getElementById("Disclaimer").style.display = "block";
}