// for site specific functions. either grab js from code-library.js or write your own.

	$(document).ready(function(){
		
		// handle close post office window
		$('a.closeThis').click(function(){
			$('#content-overlay').hide(500);		
		});

	   library.init();
	   
	});
	

/* =================================================================== */
// Library setup
var library = {
	config: {
		books: ''
	},
	
	init: function () {
		library.config.books = $('#bookCarousel');
		
		if (library.config.books.length > 0) {
			library.hide();
		}
	},
	
	hide: function () {
		$(library.config.books).addClass('hide');
	},
	
	show: function () {
		$(library.config.books).removeClass('hide');
	}
};
/* =================================================================== */