var curSection = "develop";

$(function(){
	$('div.home-text p:gt(0)').hide();
	$('div.stacked-buttons a:first').addClass('selected');
	$('a#' + curSection + '-button').addClass( (curSection + '-button-on') );
});
function changeStackSection(section){
	if(curSection != section)
	{
		$('a#' + curSection + '-button').toggleClass( (curSection + '-button-on') );
		curSection = section;
		$('a#' + curSection + '-button').toggleClass( (curSection + '-button-on') );
		$('div.home-text p:visible').fadeOut(0, function() {
			$('div.home-text p#' + section + '-text').fadeIn(100);
		});
	}	
	
}
