<!---------------------Recommended------------------>
 	var timeout; 
	var delay = 100;
 	
     $(document).ready(function(){
	 
	 	 $(".anyClass").jCarouselLite({
    	  		vertical: true,
				auto: 800,
    			speed: 1500,
				easing: "bounceout",
				visible:1

    	});		
	
     });
	 
	 <!-----------------Sitemap--------------->	
  
     $(document).ready(function(){

       $("a").click(function(event){
     		$("#" + this.id + "-S").slideToggle('fast');
		
		toggleSign(this.id);
	    //    event.preventDefault();
       });


	function toggleSign(id){
		if(document.getElementById(id).innerHTML.indexOf("sitemap-down.png")>=0){
			$('#'+id).html("<image src='http://www.etoyotaindia.com/dealerV9/images/sitemap-up.png' alt='Click here to expand' style=\"vertical-align: middle;\" border='0' />")

		}else{
			$('#'+id).html("<image src='http://www.etoyotaindia.com/dealerV9/images/sitemap-down.png'  alt='Click here to expand' style=\"vertical-align: middle;\" border='0' />")

		}

	}

       	

     });
  
