function randomAd(){
var i = Math.floor(2*Math.random());

if (i==0){
	document.getElementById('ad1').style.display = 'none';
	document.getElementById('ad2').style.display = '';
        document.getElementById('link1').style.display = 'none';
	document.getElementById('link2').style.display = '';
	}
}

function adLink(){

if (document.getElementById('ad1').style.display == ''){
	window.location = "http://www.biologos.org/blog/a-response-to-albert-mohler/";
} else {
	window.location = "http://www.biologos.org/donate/letter-from-the-president";
}
}
