

$(document).ready(function() {
						   
	$('#eligible-renewables li a').next().css("display", "none"); // hide all content that follows a clickable expandable link
	$('#eligible-renewables li a').addClass('expandable');
	$('#eligible-renewables li a').next().addClass("indented-content"); // this gives the indented sub-content a left border and some padding

	// Function to toggle expandable content
	$('#eligible-renewables li a').click(function() {
	 	$(this).next().slideToggle('slow');
		$(this).toggleClass('contractable');
		
		return false;
	});
});
