﻿$(document).ready(function() {


  // Kleur menu item oranje als het huidige categorie is.
  var menulink = window.location.href;
  $("#top_menu a").each(function() {
    if (menulink.indexOf(this.href) > -1) {
      $(this).addClass("active");
    }
  });

  var browser = parseInt(jQuery.browser.version);
  if (browser == 6) { //only when ie6
    $("#top_menu ul li").each(function() {
      var img = $(this).css("background-image").replace(".png", ".gif");
      $(this).css("background-image", img);
    });
    if ($("#right").height() < 715) {
      $("#right").height(715);
    } 
    $("#content").height(715);
  }
  if ($("#right").height() >= 715) { //divs gelijke hoogte maken
    $("#content").height($("#right").height());
  } 

  $("#top_menu ul li").each(function() {
    $(this).click(function() {
      window.location = $(this).find("a").attr("href");
    });
  });
});

