jQuery(document).ready(function(){
	$(".hoverdown").next().hide();
	$(".hoverdown").mouseover(function() {
		$(this).next().fadeIn(500);
		return false;
	}).next().hide();
	$(".hoverdown").mouseout(function() {
		$(this).next().fadeOut(100);
		return false;
	})
});
jQuery(document).ready(function() {
	$("#footer").hide();
  $('#footerinformation .button').click(function() {
 $("#footer").slideToggle('fast');
 return false;
  });
});
jQuery(document).ready(function() {
	$("#footer").hide();
  $('#footer .button').click(function() {
 $("#footer").slideToggle('fast');
 return false;
  });
});
jQuery(document).ready(function(){
	$(".clickdown").click(function() {
		$(this).next().slideToggle("fast");
		return false;
	}).next().hide();
});