$(function() {
	// Image Fader/Rotator
	$('ul#imagefader').innerFade({
		speed: 'slow', 
		timeout: 5000,
		containerHeight: 369
	});
	
	// Tipsy Tooltips
	//$('.image-left.caption img').tipsy({gravity: 'w'});
	//$('.image-right.caption img').tipsy({gravity: 'e'});
	
	// Lightbox
	$('.gallery a').lightBox();
	$('.image-right a').lightBox();
	$('.image-left a').lightBox();
	
	// Colourful List Bullets
	$('ul.colourlist li').wrapInner('<span></span>');
	
	// Superfish Dropdown Menu
	$('ul.sf-menu').superfish({
		delay: 200, animation: {opacity:'show',height:'show'}, 
		speed: 'fast', 
		autoArrows:  false,
		dropShadows: true
	});
	
	// JCaption
	$('.bigcaption img[alt]').jcaption({html: true});
	$('.jcaption img').jcaption({
		copyStyle: true,
		animate: true,
		show: {height: "show"},
		hide: {height: "hide"}
	});  
	
	// Autogrowing Textarea
	$('textarea').autogrow();
	
}); 