$(document).ready(function() {
	if ($('#slides').length) {
		$('#slides').jrotate();
		$('li', '#slides').click(function() {
			window.open($(this).find('div.title a:first').attr('href'));
		});
	}
	if ($('#collage').length) {
		$('#collage').endlessScroll({
			bottomPixels: 300,
			callback: function(num) {
				$.get(window.location.href + '/page:' + (num + 1), function(data) {
					$('#collage').append(data);
					updateTimes();
				});
			}
		});
		updateTimes();
		setInterval('updateTimes()', 5000);
	}
	$('li img', '#social').mouseover(function() {
		$(this).attr('src', $(this).attr('src').replace('.png', '-sel.png'));
	});
	$('li img', '#social').mouseout(function() {
		$(this).attr('src', $(this).attr('src').replace('-sel.png', '.png'));
	});

	twttr.anywhere(function (T) {
		T('#contact').hovercards();
	});
});

function updateTimes() {
	$('abbr.timeago').each(function() {
		$(this).text($.timeago($(this)));
	});
}
