// JavaScript Document
// Lightbox needs this, but crash with open pdf in new win function. Hence can't combine together

function collapse(){	
	$(".section").hide(); //--> cannot change to display in print style    
	$("h2 a, h3 a, h4 a, h5 a, .summary li a").click(function() {                      
        $(".section").hide();                          
		$($(this).attr("href")).toggle('slow');                      
		return false;
	});
}

$(document).ready(function(){ 
		collapse();
});

