function profileLoad(string, value) {
	var stylistNameCap = string.charAt(0).toUpperCase() + string.slice(1);
	document.title = stylistNameCap + " :: Stylists :: Zero-Zero Hair";
	$('#style-profile').removeClass().addClass("profile" + stylistNameCap);
	$('#headshot-intro').removeClass().addClass("profile" + stylistNameCap);
	$('.base').show();
	$('.screen').show();
	$('.fills2').hide();
	$('.fills1').hide();
	$('.headshot').hide();
	$('#roster-wrap').fadeOut(value, function(){
		$('.screen').hide("blind", {}, 300, function(){
			$('.fills1').delay(50).show("blind", {direction: 'horizontal'}, 300, function(){
				$('.fills2').delay(50).show("blind", {}, 300, function(){
					$('.headshot').delay(400).fadeIn(500);
					$('#style-profile').delay(1000).fadeIn(500);
				});
			});
		});
	});
}