$(function() {
	// Define Lightbox Areas
	$('.gallery a').lightBox();
	
	// Colour list
	// Places spans between list elements for easy coloured-dot effect
	$('ul.colourlist li').wrapInner('<span></span>');
	
	// Autogrowing Textarea
	$('textarea').autogrow();
	
	// JCaption for slide-up captions
	$('.jcaption img').jcaption({
		copyStyle: true,
		animate: true,
		show: {height: "show"},
		hide: {height: "hide"}
	}); 
	
	// ImageFader
	// Requires #image-fader to be a UL. Will fade between LIs.
	$('#image-fader').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '253px'
	}); 

	
	// Tipsy Tooltips
	// $('#content a').tipsy({gravity: $.fn.tipsy.autoNS});
	
	// Superfish Dropdown Menus
	// $('ul.sf-menu').superfish({delay: 200, animation: {opacity:'show',height:'show'}, speed: 'fast', autoArrows:  false,dropShadows: false}); 
}); 
