$(document).ready(
	function() {
		
		imageSwapper(".thumbnails a");
		
		$('#viewport').carousel('#previous', '#next');
		
	}
);
	
function imageSwapper(link) {
	$(link).click(
		function() {
			$('#thumb-num').html($(this).attr('rel'));
			$('#largeimage').attr('src', this.href);
			return false;
		}
	);
};