// use fadomatic-1_2.js to fade images
// http://chimpen.com/fadomatic/
function runFade() {
	var imageFaderPhoto 		= new Fadomatic(document.getElementById('divPhoto'),10,0);
	var imageFaderPreviousphoto = new Fadomatic(document.getElementById('divPreviousphoto'),8,100);
	
	imageFaderPhoto.show();
	imageFaderPreviousphoto.fadeOut();
}