			$("#t1").click(function a() {
			$("#firstContent").show( );
			$("#secondContent").hide( );
			$("#thirdContent").hide( );
			$("#fourthContent").hide( );
			$("#fifthContent").hide( );
			ctrSlider = 1;
			});
			$("#t2").click(function b() {
			$("#firstContent").hide( );
			$("#secondContent").show( );
			$("#thirdContent").hide( );
			$("#fourthContent").hide( );
			$("#fifthContent").hide( );
			ctrSlider = 2;
			});
			$("#t3").click(function c() {
			$("#firstContent").hide( );
			$("#secondContent").hide( );
			$("#thirdContent").show( );
			$("#fourthContent").hide( );
			$("#fifthContent").hide( );
			ctrSlider = 3;
			});
			$("#t4").click(function d() {
			$("#firstContent").hide( );
			$("#secondContent").hide( );
			$("#thirdContent").hide( );
			$("#fourthContent").show( );
			$("#fifthContent").hide( );
			ctrSlider = 4;
			});
			$("#t5").click(function e() {
			$("#firstContent").hide( );
			$("#secondContent").hide( );
			$("#thirdContent").hide( );
			$("#fourthContent").hide( );
			$("#fifthContent").show( );
			ctrSlider = 5;
			});
			
			
			function nextSlider(){
			
				ctrSlider++;
				if(ctrSlider == 1){
					$("#firstContent").show( );
					$("#secondContent").hide( );
					$("#thirdContent").hide( );
					$("#fourthContent").hide( );
					$("#fifthContent").hide( );
					
				}
				else if(ctrSlider == 2){
					$("#firstContent").hide( );
					$("#secondContent").show( );
					$("#thirdContent").hide( );
					$("#fourthContent").hide( );
					$("#fifthContent").hide( );

				}
				else if(ctrSlider == 3){
					$("#firstContent").hide( );
					$("#secondContent").hide( );
					$("#thirdContent").show( );
					$("#fourthContent").hide( );
					$("#fifthContent").hide( );

				}
				else if(ctrSlider == 4){
					$("#firstContent").hide( );
					$("#secondContent").hide( );
					$("#thirdContent").hide( );
					$("#fourthContent").show( );
					$("#fifthContent").hide( );

				}
				else if(ctrSlider == 5){
					$("#firstContent").hide( );
					$("#secondContent").hide( );
					$("#thirdContent").hide( );
					$("#fourthContent").hide( );
					$("#fifthContent").show( );

				}
				else if(ctrSlider > 5){
					ctrlSlider = 5;
				}
		}
		function prevSlider(){
			
			ctrSlider--;
				if(ctrSlider == 1){
					$("#firstContent").show( );
					$("#secondContent").hide( );
					$("#thirdContent").hide( );
					$("#fourthContent").hide( );
					$("#fifthContent").hide( );
					
				}
				else if(ctrSlider == 2){
					$("#firstContent").hide( );
					$("#secondContent").show( );
					$("#thirdContent").hide( );
					$("#fourthContent").hide( );
					$("#fifthContent").hide( );

				}
				else if(ctrSlider == 3){
					$("#firstContent").hide( );
					$("#secondContent").hide( );
					$("#thirdContent").show( );
					$("#fourthContent").hide( );
					$("#fifthContent").hide( );

				}
				else if(ctrSlider == 4){
					$("#firstContent").hide( );
					$("#secondContent").hide( );
					$("#thirdContent").hide( );
					$("#fourthContent").show( );
					$("#fifthContent").hide( );

				}
				else if(ctrSlider == 5){
					$("#firstContent").hide( );
					$("#secondContent").hide( );
					$("#thirdContent").hide( );
					$("#fourthContent").hide( );
					$("#fifthContent").show( );

				}
				else if(ctrSlider < 1){
					ctrlSlider = 1;
				}
		}
