"use strict";

if (typeof travi !== 'object') {
	var travi = {};
}

travi.home = (function () {
	var init = function () { 
		$('#recentThumbs ul li a').lightBox();
		$('#recentThumbs ul').jcarousel({
			scroll: 7, 
			visible: 7,
			itemLastInCallback: function () {
				$('#thumb-carousel').trigger('thumbScrollComplete');
			}
		});
		$(".updateList .entry-message").equalizeBottoms().bind('announce-update', function () {
			$(".updateList .entry-message").equalizeBottoms();
		});
	};

	$(document).ready(init);
	
	return {
		init: init
	};
}());
