window.addEvent('domready', function()
  {
    var l = location.href.replace(/\#/g, '');

    var qsSlider = new Fx.Slide('qs', {duration: 400});

    $('qs').setStyle('display', '');

    qsSlider.hide();

    $('navsear').onclick = function()
      {
        qsSlider.toggle();
      };

    $('close').onclick = function()
      {
        qsSlider.toggle();
      };

    $('search').onclick = function()
      {
        var sURL = '';
	var sHeading = '';

	sURL = "/r" + $('lt').options[$('lt').selectedIndex].value;
	sHeading = $('lt').options[$('lt').selectedIndex].text;

	sURL += "/c" + $('c').options[$('c').selectedIndex].value;
	sHeading = $('c').options[$('c').selectedIndex].text + " " + sHeading;

        if ($('p').options[$('p').selectedIndex].value != -1)
          sURL += "/p" + $('p').options[$('p').selectedIndex].value;

        sHeading = sHeading.replace(/[^A-Za-z0-9\s\-\'\,]+/g, "");

        sHeading = sHeading.replace(/\s+/g, "_");

        window.location.href = sURL + '/' + sHeading;
      };
  });

