/* Wolfgang Klinger <wolfgang@stufenlos.net> 2009, all rights reserved */
$(document).ready(function($){
	$("#username,#password").defaultvalue("Benutzer","Passwort");
	$("#username-inline,#password-inline").defaultvalue("Benutzer","Passwort");

	$('#mainmenu li:not(.act) img,#submenu li:not(.act) img,#metanav li:not(.act) img').each(function() {
		$(this).mouseover(
			function() {
				if ($(this).attr('src').indexOf('-act') == -1) {
					$(this).attr('src',$(this).attr('src').replace(/([^.]*)\.(?!.*\.)(.*)/, "$1-act.$2"));
				}
			}   
		);  
		$(this).mouseout(      
			function() {
				if ($(this).attr('src').indexOf('-act') != -1) {
					$(this).attr('src',$(this).attr('src').replace(/([^.]*)-.*\.(?!.*\.)(.*)/, "$1.$2"));
				}   
			}   
		);  
	}); 
});
