/* Author: 
	Lee Brooks <lee@webforma.co.uk>
*/

function doBlogScroller() {
	var theLength = $('aside section .inner article').length;
	if(theLength > 3){
		$('aside section .inner article:first-child').addClass("top").animate({"marginTop":"-69px"}, function(){
			theparent = $(this).parent();
					$('aside section .inner article:first-child').css({"margin-top":"0"}).appendTo(theparent).removeClass("top");
		});

		
	}
	setTimeout(doBlogScroller, 4000);
}

$(function(){
	setTimeout(doBlogScroller, 4000);
});
