$(document).ready(function(){

	$('.project-wrapper').click(function(){
		
		if ( $('.project-content-wrapper', this ).is(':hidden') )
		{
			$('.project-content-wrapper', this ).slideDown("fast");
			$('.project-expand', this ).text("-");
		}
		else
		{
			$('.project-content-wrapper', this ).slideUp("fast");
			$('.project-expand', this ).text("+");
		}
	});
	
});
