 $(document).ready(function() {
	// Navigation - HoverEffekt
    $(".navbar ul li").hover(function() {
      $(this).css("background-color","#0190D4");
      $(this).attr("class","hovered");
      $(this).children("a").attr("class","hovered");      
      $(this).click(function(){
         location.href=$(this).children("a").attr("href");
      });
    },function(){
      $(this).css("background-color","#ECEDEF");
      $(this).removeAttr("class");  
      $(this).children("a").removeAttr("class");       
    });  
    $(".navbar ul li.level2").hover(function() {   
      $(this).css("background-color","#0190D4");
      $(this).attr("class","level2 hovered");
      $(this).children("a").attr("class","hovered");      
      $(this).click(function(){
         location.href=$(this).children("a").attr("href");
      });
    },function(){
      $(this).css("background-color","#ECEDEF");
      $(this).attr("class","level2");
      $(this).children("a").removeAttr("class");
    });	
 });
 
