var igWidth = 891;
var curPage = 1;

function nextPage() {
	pages = Math.ceil($("#igContainer img").length / 10);
	if (curPage < pages) {
		curPage++;
		$("#igContainer").animate({"marginLeft": (-(curPage - 1)*igWidth) + "px"}, 1000);
	
	}
}

function prevPage() {
	if (curPage > 1) {
		curPage--;
		$("#igContainer").animate({"marginLeft": (-(curPage - 1)*igWidth) + "px"}, 1000);
	}
}

$(document).init(function() {
	$('.colorbox_link').colorbox();
});

