/*
	Javascriptcode
*/

// jQuery-Code
$(document).ready(function() {
	
	$(".sicherheitsabfrage").click(function () {
		
		check = confirm( "Wollen Sie wirklich?" ) ;
		if ( check == false) {
			return false ;
		}
		else {
			return ;
		}
		
	});
	
	$(".loeschhinweis").click(function () {
		
		check = confirm( "Wollen Sie wirklich? Achtung, wenn Sie löschen gehen die aktuellen Änderungen verloren und es wird nur die Mannschaft gelöscht." ) ;
		if ( check == false) {
			return false ;
		}
		else {
			return ;
		}
		
	});
	
	$("input.detectchange").focusout(function () {
		
		vold = $(this).attr("rel") ;
		vnew = $(this).attr("value") ;
		
		if ( vold != vnew ) {
			$(this).addClass( "unsaved" ) ;
		}
		else {
			$(this).removeClass( "unsaved" ) ;
		}
		if ( vnew == "" ) {
			$(this).attr( "value", vold ) ;
			$(this).removeClass( "unsaved" ) ;
		}
		
		
	});
	
});

