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