// Animated toggle for About us page 

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h2.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("fast");
	});

});

// Toggle Other text area 

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$("#toggleother").hide(); 

	// Toggle the textarea
	$('#marketing').change(function(){
		$('#toggleother')[ ($(this).val() != 'other') ? 'hide' : 'show' ]()
	});
	
	// Remove text
   // $("#other").blur(function () {
        // $(this).next("#other").css('display','inline').fadeOut(1000);
  //  });





});
