//jQuery start.
// $ is an alias for the function jQuery
$("document").ready(function() {
  // This makes the accordian
	$('#navigation').accordion({
		navigation: true,   // Makes the accoridan navigation style
		header: '.barHead', // CSS class for the top-level tiem i.e Home, About
		active: false,      // Keep all closed
		autoHeight: false   // Don't dextend full length to the bottom of the parent container
	});
	
	
	
});
