// Initialises various Javascript functions, to save putting them in the head.


// Promo Box image cycler.  http://jquery.malsup.com/cycle/
$(document).ready(function() {
			$('.artcycle').cycle({
			fx: 'fade', // transition type, ex: fade, scrollUp, shuffle, etc...
			random: 1,  // randomise order or not
			sync: 1    // if in/out transitions should occur simultaneously
		});
	});
// ----------------------------------------------------------

// Maldives boat image cycler.  http://jquery.malsup.com/cycle/
$(document).ready(function() {
			$('.imgcycle').cycle({
			fx: 'fade', // transition type, ex: fade, scrollUp, shuffle, etc...
			random: 1,  // randomise order or not
			sync: 1    // if in/out transitions should occur simultaneously
		});
	});
// ----------------------------------------------------------


// Tooltip for Promo Box images.  http://jquery.bassistance.de/tooltip/demo/
$(function() {
		$('.artpic').tooltip({
		delay: 0,  						// any delay before showing tooltip
		fade: 250, 						// fade in/out duration
		extraClass: "artpic", // allows specific style sheet to style this tooltip
		showURL: false,
		bodyHandler: function() {
			return $("<img/>").attr("src", this.src);
			}
		});
	});
// ----------------------------------------------------------