//filter toggle
$(document).ready(function() {
 // toggles the filter on clicking the noted link
  $('a#toggle').click(function() {
	$('#downloadfilter').slideToggle(400);
	return false;
  });
});