function initExpandableCopy(){
	//alert("initExpandableCopy has fired");
	$(".expandableCopy .reveal_copy").hide();
	
	$(function(){
		$('.show').click(function(){
			$(this).toggleClass('hidden');
			if($(this).hasClass('hidden')){
				$(this).html("+ Show Project Description");
			}else{
				$(this).html("- Hide Project Description");
			}
		});
	});
}

function showHideText(whichText){
	$(whichText).slideToggle(100);
	//alert("showHideText has fired = " + whichText);
}

function showText(whatever){
	$(whatever).html("Show Text");
	//alert("showText has fired. showID = " + whatever);
}

function hideText(whatever){
	$(whatever).html("Hide Text");
	//alert("hideText has fired. showID = " + whatever);
}

$(document).ready(function(){initExpandableCopy();});

