$(document).ready(function() {
	var montageImages = [
		// format: ['image/url.jpg', 'link/url.htm']
		['images/home-superbox.jpg', 'product-industries/hm224b-super-box.htm'],
		['images/home-o2-generator-box.jpg', 'product-industries/o2-generator-box.htm'],
		['images/home-o2-generator-case-1.jpg', 'product-industries/reusable-o2-generator-case.htm'] // no comma after last bracket!
	],
	montageOptions = {
		'delay' : 2000, // in milliseconds
		'fadeSpeed' : 500, // also in milliseconds
		'pauseOnMouseover' : true
	};
	$('#montage').montage(montageImages, montageOptions);
});

