
	$(document).ready(function() {
		// LOGIN
		$('.loginUsername').focus(function() {
			$(this).val('').addClass('focus');
		}).blur(function() {
			if($(this).val() == "")	$(this).val('Benutzername');
			$(this).removeClass('focus');
		}).keyup(function(e) {
			if(e.keyCode == 13)	$(this).parent().submit();
		});
		$('.loginPassword').focus(function() {
			$(this).val('').addClass('focus');
		}).blur(function() {
			if($(this).val() == "")	$(this).val('Passwort');
			$(this).removeClass('focus');
		}).keyup(function(e) {
			if(e.keyCode == 13)	$(this).parent().submit();
		});
		
		// LIGHTBOX
		$('a.lightbox').lightBox();
	});
	
	
	function submitLoginForm() {
		document.forms['loginForm'].submit();
	}