function loadpost(){
$('.thispost:empty').each(function(){
	var position	= parseInt($(this).offset().top)
	var scllwidth	= parseInt($(window).scrollTop() + $(window).height())
	if ( scllwidth > position  ) {
		$(this).html('<img src="img/loading1.gif" />')
		$.ajax({ url: "js/teapot.cfc?method=getpost&returnformat=json&key="+$(this).attr('id'),cache:false, dataType: "json", success: function(data) { 
			$('#'+data.KEY).html(data.S)
		 }})
	}	
})	
}
$(window).scroll( function() {loadpost()} )

$(document).ready(function(){
	loadpost()
	$('#date_'+ $('#page').attr('today') ).html('<img src="img/today.png" />')
	$('#date_'+ $('#page').attr('yesterday') ).html('<img src="img/yesterday.png" />')
	$('.gdatebox').click(function(){ window.location = 'index.cfm?date='+$(this).attr('id') })
	$('.postholder').children('.thispost:last-child').css({'border-bottom':'none','padding-bottom':'15px'})
	$('#'+ $('#page').attr('thisday') ).attr('class','dgrensel')
})
