  $(document).ready(function(){
      
      // change links of the rudolf logo and language flags 
      var linkEn = '/brands/en.htm';
      var linkDe = '/brands/de.htm';
      
      /* check language for the logo link
      if (document.URL.indexOf("/en/", 0) != -1) {
    	  $("#rudolf-group-logo").unwrap().wrap("<a href='" + linkEn + "' />");
      } else {
    	  $("#rudolf-group-logo").unwrap().wrap("<a href='" + linkDe + "' />");
      }*/
      
      // change flag links
      $("#lang-en").attr("href", linkEn);
      $("#lang-de").attr("href", linkDe);

      // show main navigation
      $("#full-header").mouseenter(function() {
    	  $("#fixednavWrapper").animate({"top": "+=40px"}, "fast");
      });
      $("#full-header").mouseleave(function(){
    	  $("#fixednavWrapper").animate({"top": "-=40px"}, "fast");
      });
      
  });
