function methodology(){
	
	if(methodologyStep == 6 ){
		methodologyStep = 1;
		$('#methodology-title').html(titles[0]);
		$('#methodology-subtitle').html(subtitles[0]);
		$('#methodology-li-1').html(animationli1[0]);
		$('#methodology-li-2').html(animationli2[0]);
		$('#methodology-li-3').html(animationli3[0]);
	} else {
		$('#methodology-title').html(titles[methodologyStep]);
		$('#methodology-subtitle').html(subtitles[methodologyStep]);
		$('#methodology-li-1').html(animationli1[methodologyStep]);
		$('#methodology-li-2').html(animationli2[methodologyStep]);
		$('#methodology-li-3').html(animationli3[methodologyStep]);
		methodologyStep += 1;
	}
	//alert(methodologyStep);
	var src = '/images/workwise/elements/animation/'+methodologyStep+'.png';
	$('#methodology-seq').attr("src", src);

}
