$(document).ready( function() {
	
	// Hide all subfolders at startup
	$(".php-file-tree").find("UL").hide();
	
	//open selected subfolder
	//document.getElementById("Wellwishes").style.display = "block";
	//document.getElementById("CongratulationsonyourWedding.html").style.display = "block";
	$("#Wellwishes").show();
	//$("#CongratulationsonyourWedding.html").show();
	document.getElementById("CongratulationsonyourWedding.html").style.display = "block";

	// Expand/collapse on click
	$(".pft-directory A").click( function() {
		$(this).parent().find("UL:first").slideToggle("medium");
		if( $(this).parent().attr('className') == "pft-directory" ) return false;
		scroll(0,0);
	});

});
