$(document).ready(
function()
{
    $(document).pngFix(); 
	// This is the javascript for the lightbox. All A tags (links) indice a div id="images" get a lightbox effect
	$('#images a').lightBox();	
	
	// For each button, slide everything up, then slide down the one this button is for
	$("#stanley_button").click(function () {

		   $('.stanley_further').slideDown();
		});

	$("#liquid_button").click(function () {

		   $('.liquid_further').slideDown();
		});
	$("#landshare_button").click(function () {

		   $('.landshare_further').slideDown();
		});
	$("#rosalind_button").click(function () {

		   $('.rosalind_further').slideDown();
		});
	$("#changingdialogues_button").click(function () {

		   $('.changingdialogues_further').slideDown();

		});
	$("#karenwoods_button").click(function () {

  		   $('.karenwoods_further').slideDown(); 		   		   

		});
	$("#mimmos_button").click(function () {

		   $('.mimmos_further').slideDown();

		});
	$("#cxc_button").click(function () {
	
		   $('.cxc_further').slideDown();

		});
	$("#deadpoets_button").click(function () {
	
		   $('.deadpoets_further').slideDown();

		});
	

}
)
