$(document).ready(function() {
	$(".show-more").css('display','block');
	$(".js-support").hide();
	$(".js-support").addClass("list-hidden");

	// Expand lists
	$(".show-more").click(function() {
		$(this).parent().find(".list-hidden").show('slow');
		$(this).parent().find(".show-more").hide();
		$(this).parent().find(".hide-more").show();
		return false;
	});
	
	$(".hide-more").click(function(){
		$(this).parent().find(".list-hidden").hide('fast');
		$(this).parent().find(".hide-more").hide();
		$(this).parent().find(".show-more").show();
		return false;
	});
});


