$(document).ready(function(){
	
	var $articles = $().find("div.article");
	var length = $articles.length;
	
	if (length > 10) {
		$("#middle").append('<a href="#" id="older-posts">Show older news...</a>');
		for (i=10; i<length; i++) {
			$articles.eq(i).hide();
		}
	}
	
	$("#older-posts").click(function() {
									
									$articles.slideDown(500);
									$("#older-posts").remove();
									return false;
									
									});
	
	
	// Caption Sliding
	$(".caption").css({top: '105px'});
	
	$('.link-frame').hover(function(){
		$(this).children(".caption").stop().animate({top: '70px'},{queue:false,duration:160});
	}, function() {
		$(this).children(".caption").stop().animate({top: '105px'},{queue:false,duration:160});
	});
	
});