$("#box_menu").ready(function(){
	$("ul#menu li a").hover(
	      function () {
	        $(this).children("img").attr("src", $(this).children("img").attr("src").replace(/\.jpg/, "_over.jpg"));
	      }, 
	      function () {
	        $(this).children("img").attr("src", $(this).children("img").attr("src").replace(/_over\.jpg/, ".jpg"));
	      }
    );

});

function show_error(msg){
	$("#box_content #text").ready(function(){
		$("#box_content #text").prepend('<div class="error_msg"><b>Es ist folgender Fehler aufgetreten:</b><br />' + msg + '</div>');
	});
}