
// Fade in backgrounds

$(document).ready(function() {

  $("#bg_left").fadeIn(3000);

  $("#bg_right").fadeIn(6000);

  $("#logo").fadeIn(3000);

  /*
  $('#book').animate({ 
    opacity: 1,
	top: '100px'
  }, 2000, function() {
	    // Animation complete.
	  });
  */
    
  $('#page_content').jScrollPane({
    scrollbarWidth : 14,
    showArrows: true
  });  
    
});