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

