// PREVENT FLICKERING
document.write('<style type="text/css">#posts{height:0}</style>');

// AUTO LOAD
$(function(){

//	$('#posts').css('height','0');
//	$('#posts > .post').hide();
	
	$('#posts').vgrid({
				easeing: "easeInOutExpo",
				time: 400,
				delay: 10,
				fadeIn: {time: 500, delay: 5}
			// 	
			// easeing: "easeInOutExpo",
			// time: 600,
			// delay: 5
		});
		
		$('.post p.blurb').truncate({max_length: 140});
	//       
	// 
	// $('.post p.blurb').jTruncate({
	//         length: 150,
	//         minTrail: 0,
	//         moreText: "[read more]",
	//         lessText: "[hide extra]",
	//         ellipsisText: "...",
	//         moreAni: "fast",
	//         lessAni: "fast"
	//     });
	
	
});
