Event.observe(window,'load',setconfirm);

function setconfirm(){
	$$('a.confirm').each(function(element,index){
		Element.removeClassName(element,'confirm');
		Element.writeAttribute(element, 'onclick','return false;')
		Event.observe(element,'click',function(){
			var answer = confirm("This link takes you off of the Creativity & Leadership Project at Oberlin website. Oberlin is not responsible for the content of the website you are about to view.");
			if(answer){
				var href = Element.readAttribute(element,'href');
				window.location=href;
			}
		})
	});
}