/*
$(document).ready(function(){
	$('#german').hover(function() {
	$(this).find("img").remove();
	$(this).append('<img src="images/welcome_05-over.jpg" alt="Deutsch" />');
	},
	function () {
	$(this).find("img").remove();
	$(this).append('<img src="images/welcome_05.jpg" alt="Deutsch" />');
		}
	);
});
*/
