	$(document).ready(function(){
	
		// CATCH THE LEARN MORE LINKS ON LOAD, LOAD AJAX
		$("div#project-list a.learn-more").each(function(){
			var newContent = $(this).attr('href');
			$(this).parent().next('div.load-in').load(newContent);
			$("div#project-container").css("height","975px");
			$(this).empty()
			$(this).fadeOut("fast");
		});
	
	});