$(function(){
	$("#nextSteps").click(function(){
		$("#nextStepsContainer").stop().animate({
					width: "635px"
		}, 500 );
		$("#studentLifeContainer").stop().animate({
					width: "0px"
		}, 500 );
		$("#nextSteps").css('background-position', '0px -67px');
		$("#studentLife").css('background-position', '0px -67px');
	});
	$("#studentLife").click(function(){
		$("#nextStepsContainer").stop().animate({
					width: "0px"
		}, 500 );
		$("#studentLifeContainer").stop().animate({
					width: "635px"
		}, 500 );
		$("#nextSteps").css('background-position', '0px 0px');
		$("#studentLife").css('background-position', '0px 0px');
	});
});