$(document).ready(function() {

	// open external links in a new window. These links must be marked with the
	// rel attribute.

	$("a[rel=external]").click(function() {
		window.open(this.href);
		return false;
	});
	
	// Infinite Scroll
	
	$("#posts").infinitescroll({
		debug           : false,
		nextSelector    : ".subnav a:first",
		loadingImg      : TEMPLATE_URL + "/css/img/load.gif",
		loadingText     : "<em>Loading more posts...</em>",
		donetext        : "<em>No more posts to display</em>",
		navSelector     : ".subnav",
		contentSelector : "#posts",
		itemSelector    : "#posts div.post"
	});
	
});
