$(document).ready(function(){  

	$(".drop_down_menu_trigger").click(function(event)
	{
		$(".newsArchive").slideToggle("100");
		return false; // this keep the page from reloading which would rehide the menu
	});
});
