// this function is for the show and hide feature
$(document).ready(function() {
	$('.content_section').hide();
	$('.pressnews').show();
	$('a#menu_news').click(function() {
		$('.content_section').hide();
		$('.pressnews').fadeIn('500');
		return false;
		});
	$('a#menu_media').click(function() {
		$('.content_section').hide();
		$('.pressmedia').fadeIn('500');
		return false;
		});
	$('a#menu_experts').click(function() {
		$('.content_section').hide();
		$('.pressexperts').fadeIn('500');
		return false;
		});
	$('a#menu_sheets').click(function() {
		$('.content_section').hide();
		$('.presssheets').fadeIn('500');
		return false;
		});
  });

$(document).ready(function() {
	$('dt').next('dd').hide();
	$('dt').click(function() {
		$(this).next('dd').slideToggle('500');
		return false;
	});
  });


