// If jQuery is in use, ensure there's no conflict with the $ function, and instead use $j.
if (jQuery && jQuery.noConflict) {
	jQuery.noConflict();
	var $j = jQuery;
}

// Prepare image gallery.
$j(function () {
	$j('.imageGallery').imageGallery({
		fadeInDuration: 450,
		fadeOutDuration: 350,
		transitionDelay: 6000
	});
});

