
	     function testimonials_init(elementid)
	    {
	        testimonials_container = document.getElementById(elementid);
	        testimonials_count = testimonials_container.getElementsByTagName("div").length - 1;
	        
	        // Initiate changing text
	        testimonials_switch();
	    }
	    
	    function testimonials_switch()
	    {
	        testimonials_hideAll();
	        
	        var child = testimonials_container.getElementsByTagName("div")[testimonials_current];
	        
	        child.style.display = "block";
	        
	        if(testimonials_current == testimonials_count)
	        {
	            testimonials_current = 0;
	        }
	        else
	        {
	            testimonials_current++;
	        }
	        
	        setTimeout("testimonials_switch()", 10000);
	    }
	    
	    function testimonials_hideAll()
	    {
	        for(var i = 0; i <= testimonials_count; i++)
	        {
	            var child = testimonials_container.getElementsByTagName("div")[i];
	            child.style.display = "none";
	        }
	    }
	    
