// JavaScript Document

function divChange (ID, callback, pageLocation) {
	$('.changing_div').hide();
	$(ID).fadeIn(1000, function(){callback;});
	if (pageLocation) document.location.href='#'+pageLocation;
}
			
function setImg (ID, imgPath) {
	$(ID).attr('src', imgPath);
}



