$(document).ready(function () {
	// Box 'Vorteile' Hover-Effekte
	$('#startseitenboxen #vorteile ul li').hover(
		function () {
			$('#startseitenboxen #vorteile ul li').removeClass('opened');
			$(this).addClass('opened');
		}
	);


	// Passwort- und Username-Feld Label-Zauber
	
	//$('#password_clear').show();
	//$('#password').hide();

	//$('#password_clear').focus(function () {
	//	$('#password_clear').hide();
	//	$('#password').show();
	//	$('#password').focus();
	//});

	$('#password').focus(function(){
		$('#PasswordLabel').hide();
	});
	
	$('#password').blur(function () {
	    if ($('#password').val() == '') {
	    	//$('#password_clear').show();
	    	//$('#password').hide();
	    	$('#PasswordLabel').show();
	    }
	});

	$('#login').focus(function () {
		if ($(this).val() == 'Benutzername') {
			$(this).val('');
		}
	});

	$('#login').blur(function () {
		if ($(this).val() == '') {
			$(this).val('Benutzername');
		}
	});
});
