$(document).ready(function() {
	$('#list1').click(function(event) {
							   
			$("#tc2").hide("slow");
			$("#td2").hide("slow");
			
			$("#tc3").hide("slow");
			$("#td3").hide("slow");
	
		 $("#tc1").show("slow");
		   $("#td1").show("slow");
		   document.getElementById("list1").style.color = "#990000";
			document.getElementById("list2").style.color = "#363636";
			document.getElementById("list3").style.color = "#363636";
	});
		
	$('#list2').click(function(event) {
		   $("#tc1").hide("slow");
		   $("#td1").hide("slow");
		     $("#tc3").hide("slow");
		   $("#td3").hide("slow");
	
		  $("#tc2").show("slow");
		   $("#td2").show("slow");
			 document.getElementById("list2").style.color = "#990000";
			 document.getElementById("list1").style.color = "#363636";
			  document.getElementById("list3").style.color = "#363636";
		})
	
	$('#list3').click(function(event) {
		    $("#tc2").hide("slow");
		    $("#td2").hide("slow");
		    $("#tc1").hide("slow");
		    $("#td1").hide("slow");

	
		  $("#tc3").show("slow");
		   $("#td3").show("slow");
			 document.getElementById("list3").style.color = "#990000";
			 document.getElementById("list2").style.color = "#363636";
			  document.getElementById("list1").style.color = "#363636";
		})
		
		setTimeout('slide_testimonial()', 7000);

});


function slide_testimonial(){
	if(document.getElementById("tc2").style.display == 'none' && document.getElementById("tc3").style.display == 'none'){
		$("#tc1").hide("slow");
		$("#td1").hide("slow");
		$("#tc3").hide("slow");
		$("#td3").hide("slow");
		
		$("#tc2").show("slow");
		$("#td2").show("slow");
		document.getElementById("list2").style.color = "#990000";
		document.getElementById("list1").style.color = "#363636";
		document.getElementById("list3").style.color = "#363636";
	}else if(document.getElementById("tc3").style.display == 'none'){
		$("#tc2").hide("slow");
		$("#td2").hide("slow");
		$("#tc1").hide("slow");
		$("#td1").hide("slow");
		$("#tc3").show("slow");
		$("#td3").show("slow");
		document.getElementById("list3").style.color = "#990000";
		document.getElementById("list1").style.color = "#363636";
		document.getElementById("list2").style.color = "#363636";
	}else{
		$("#tc2").hide("slow");
		$("#td2").hide("slow");
		$("#tc3").hide("slow");
		$("#td3").hide("slow");
		$("#tc1").show("slow");
		$("#td1").show("slow");
		document.getElementById("list1").style.color = "#990000";
		document.getElementById("list2").style.color = "#363636";
		document.getElementById("list3").style.color = "#363636";

			
	}
	
	setTimeout('slide_testimonial()', 7000);

}

$(document).ready(function() {
	
		$("#slider").easySlider({
			prevText: '<span class="sitemapTxt"><< Previous Slide</span>',
			nextText: '<span class="sitemapTxt" style="float:right">Next Slide >></span>',
			orientation: 'vertical',
			auto: true,
			continuous: true			
	});

});
