$(document).ready(function() {
	var montageImages = [
		// format: ['image/url.jpg', 'link/url.htm']
		['images/home-slide-1.jpg', ''],
		['images/home-slide-2.jpg', ''],
		['images/home-slide-3.jpg', ''],
		['images/home-slide-4.jpg', ''] // no comma after last bracket!
	],
	montageOptions = {
		'delay' : 3000, // in milliseconds
		'fadeSpeed' : 500, // also in milliseconds
		'pauseOnMouseover' : true
	};
	$('.montage').montage(montageImages, montageOptions);
});

