$(document).ready(function() {

	var nextpage = 10;
	load = true;
	
	$("#nav").empty();
	
	$(window).scroll(function(){
		if(nextpage/10 <= pages-1) {
			if($(window).scrollTop() == $(document).height() - $(window).height()) {
				if(scroll != 1) {
					if(load == true) {
						load = false;
						//alert(nextpage/10 + " -- " + pages);
						$("#older_posts").fadeOut("fast", function() {
							$("#loading").fadeIn("medium");
						});
						var timeOut = setTimeout(function() {
							$("#loading").fadeOut("fast", function() { $('#takeforever').fadeIn() });
						}, 10000);
						nexturl = "http://visuelle.co.uk/index.php/index/ajax_load/P" + nextpage;					
						$.ajax({
							url: nexturl,
							cache: false,
							success: function(html){
								$(".post:last").after(html);
								nextpage = nextpage + 10;
								$("#loading").fadeOut("fast");
								$('#takeforever').hide();
								clearTimeout(timeOut)
								load = true;
							}
						});
					}
				}
			}
		} else {
			$("#theend").fadeIn("fast");
		}
	});

});
