
$().ready(function() { //jQuery
									 
		//image replacement gallery
		//http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/
    $("#doedetest li a").hover(
			function() {
				$('.foto1', this).fadeOut('slow');
			},
			function () {
				$('.foto1', this).fadeIn('slow');
			}
		);

});

