$(function() {
	// Define Lightbox Areas
	$('.gallery-mixed td:first-child a').lightBox();
	$('.gallery a').lightBox();
	$('a.lightbox').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: '250px'
	}); 

	if($("#delivery_date").length != "") {
		$("#delivery_date").datepicker({
			showOn: 'button',
			buttonImage: 'Scripts/images/calendar.gif',
			buttonImageOnly: true,
			dateFormat: 'dd/mm/yy'
		});
	}
	
	// Order Form Validation
	$("#orderForm").validate();

	
	// 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}); 
}); 
