$(document).ready(function() {
	var montageImages = [
		'images/home-1.jpg',
		'images/home-2.jpg',
		'images/home-3.jpg'
	],
	montageOptions = {
		'delay' : 3500,
		'pauseOnMouseover' : true
	};
	$('#myMontage').montage(montageImages, montageOptions);
});

