$(document).ready(function(){
	var profiles =
	{
		smallWindow:	// Creates a small popup window
		{
			height:400,
			width:400,
			center:1,
			scrollbars:1
		},
		largeWindow:	// Creates a large popup window
		{
			height:680,
			width:500,
			center:1,
			scrollbars:1
		}
	};

	$('.sf-menu').superfish({		// Controls the drop down menus
		animation: {height:'show'},
		delay: 500	// How long should the menu remain after user has moused out
	});
	$('#extracts').accordion();		// Controls the book extracts
	$('#bookslides ul').innerfade({ speed: 'slow', timeout: 5000, type: 'sequence', containerheight: '350px' });   // Homepage images
   	$(".popup").popupwindow(profiles);
});