$(function(){
$('#DropDown').hide();
$(".parent").click(function(){
$('#DropDown').slideToggle(function(){
if( $('#DropDown').css("display") == "none"){
	$(".parent").html("Learn More");

} else {
	$(".parent").html("Hide More");
}
	$.scrollTo(
		$('#DropDown'),{
		speed: 500
		}
	);
	
});
});
});
