jQuery(document).ready(function($) {
	$("ul#menu li a img").hover(
	      function () {
	    	 if(-1 == $(this).attr("src").search(/-hover.png/)){
	 	        $(this).attr("src", $(this).attr("src").replace(/\.png/, "-hover.png"));
	    	 }
	      }, 
	      function () {
	      	 if($(this).attr("id") != $("#page").attr("value")) {
	    	  	$(this).attr("src", $(this).attr("src").replace(/-hover/, ""));
	    	 }
	      }
    );

});

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