// slide content
$(document).ready(function() {
 // hides the contentbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#content').hide();
 // shows the contentbox after page load
  $('#content').show('slow');
  //$('#content').fadeIn('slow');
});

// fade menu
$(function() {
/*	// set opacity to nill on page load
	$("ul#nav span").css("opacity","0");
	// on mouse over
	$("ul#nav span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'fast');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});*/
// scroll pane
	// this initialises the demo scollpanes on the page.
	$('.panel').jScrollPane({showArrows:true});
});

