function csViewClientList() {
	$('viewClientList').style.display = 'none';
	$('viewCaseStudies').style.display = 'block';
	var clientTween = new fx.ElementScroll($('contentCs'), {duration: 400, transition: fx.sinoidal});
	clientTween.custom(0, -960);
}

function csViewCaseStudies() {
	$('viewCaseStudies').style.display = 'none';
	$('viewClientList').style.display = 'block';
	var csTween = new fx.ElementScroll($('contentCs'), {duration: 400, transition: fx.sinoidal});
	csTween.custom(-960, 0 );
}



/*

function showSlideTwo() {
	$('showSlideOne').style.display = 'none';
	$('showSlideTwo').style.display = 'block';
	var clientTween = new fx.ElementScroll($('contentCs'), {duration: 400, transition: fx.sinoidal});
	clientTween.custom(0, -1290);
}

function showSlideOne() {
	$('showSlideTwo').style.display = 'none';
	$('showSlideOne').style.display = 'block';
	var csTween = new fx.ElementScroll($('contentCs'), {duration: 400, transition: fx.sinoidal});
	csTween.custom(-1290, 0);
}
*/

/* 
 
 showSlideTwo()
 
 showSlideThree()
 
  showSlideTwo()
 
 
 
 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 