function accordion(){
	$("#intro-wrapper .content").hide();
	$("#intro-wrapper .current").show();
		
	$("#intro-wrapper h3").click(function() {
		if($(this).next().is(':visible')){
			return false;
		} else{
				$('.current').slideUp('normal', function(){
					$(this).removeClass('current');
				});
							
				$(this).next().slideDown('normal', function(){				
					$(this).addClass('current');
				});
			}
	});
}

