$(document).ready(function() {
	$('.nav_head').toggle(function() {
		$('#navBar').animate({height: 128}, 'slow');
									}, function() {
		$('#navBar').animate({height:18}, 'slow');
	});
	$('.screening_container').children('p').hide();
   	$('.screening_container h3').click(function(){
		$(this).parent().children('p').slideToggle(200);
		$(this).parent().children('.more_icon').toggleClass('more_hover');
	});

});


/*$(document).ready(function() {
	$('.navHead').click(function(event){
		if (event.target == this){
			$('#navBar').animate({height:100}, 'slow');
		}
	});
});
*/
