$(document).ready(function(){
/*		 
	$("div#contentCopy").css("height","220px");
	$("div#contentCopy").css("overflow","hidden");
	
//insert "read more" element 

	$("<div class='readMore'><a href='#'>Read More</a></div>").insertAfter("div#searchArea");  

// toggle the height of the Copy Container

	$("div.readMore").toggle(function(){
		 $("div#contentCopy").animate({height: "380px"}, 1000 );
	 		$("div.readMore").html("<div class='readMore'><a href='#'>Read Less</a></div>");
	 },
  	function(){
		$("div#contentCopy").animate({height: "220px"}, 1000 ); 
			$("div.readMore").html("<div class='readMore'><a href='#'>Read More</a></div>");
	
});	
*/

// hide the projects
$("div.project").hide();

var i=0;

// Set an timer on the projects
var timer = setInterval(function(){ showProject(i); }, 100);

function showProject() {
	
	var projects = $("div.project").length;
	
	if (i >= projects){
	clearInterval(timer);
	}
	
	$("div.project:hidden").eq(0).fadeIn(200);
	
	i++;

}




});
