
$(document).ready(function(){
				   
	//Wenn JavaScript aktiviert, dann folgende CSS-Anweisung			     
	$(".hiddenlogin").css("display", "none");
	$("h2.kundenlogin").css("cursor", "pointer");
	
	//Wenn JavaScript aktiviert, dann Hover-Anweisung
	$("h2.kundenlogin").mouseover(function () 
		{$(this).css("background", "#e85911"),
		$(this).mouseout( function() {$(this).css("background", "#213D49");} )
		
	});
	
	//fadeIn LoginForm
	$("h2.kundenlogin").click(function () 
		{$(".hiddenlogin").animate({ height: 'toggle', opacity: 'toggle'}, 300);} 	
	);

				
	//Highlight Inputs
      $('.hiddenlogin input.eingabe').mouseover(function() 
									   
		{$(this).addClass('highlightinput'),
		$(this).mouseout( function() {$(this).removeClass('highlightinput')} )
		 
									
	});
	



   




	
	
}); //End of $(document).ready( function{} )