$(document).ready(function() {
	var montageImages = [
		// format: ['image/url.jpg', 'link/url.htm']
		['images/200-home.jpg', 'products/200-series-super-duty.htm'],
		['images/1300-transmitter-home.jpg', ''],
		['images/300-home.jpg', 'http://www.yahoo.com/'],
		['images/TITAN2000-home.jpg', ''],
		['images/2000-transmitter-home.jpg', 'http://docs.jquery.com/'],
		['images/titan-1100-home.jpg', ''] // no comma after last bracket!
	],
	montageOptions = {
		'delay' : 2000, // in milliseconds
		'fadeSpeed' : 500, // also in milliseconds
		'pauseOnMouseover' : true
	};
	$('#myMontage').montage(montageImages, montageOptions);
});

