﻿// JScript File
// voor het openhouden van het menu

$(document).ready(function() {

  //  sUrl = "" + window.location;
  //  sUrl = sUrl.toLowerCase();

  //  aIds = $('#ids').val().split(",")

  //  for (var i in aIds) {
  //    $("#m" + aIds[i]).show();
  //  }
  if (document.all) {
    FixFooter();
  }

  $("#shopcartMenu").click(function() {
    location.href = '/winkelwagen.aspx';
  });

  $('#dsMenu a').click(function() {
    var ul = $(this).parent().next()[0];
    if (ul != null) {
      if (ul.nodeName == "UL") {
        if (ul.style.display == "") {
          ul.style.display = 'none';
          return false;
        }
      }
    }
  });

  $('#dsMenu a').hover(function() {
    $(this).addClass('hover');
  }, function() {
    $(this).removeClass('hover');
  });

});



