 $(document).ready(function(){ 
   
     
     

     
     setTimeout((function() {
            myfunction();
        }), '30000');
     
   
   
     
     
     function myfunction() {
        	$.get("/randomtestimonialXML.php?random=" + Math.random(),function(xml){
  			var blurb = $("blurb",xml).text();
  			var name = $("name",xml).text();
  			var testimonial_id = $("testimonial_id",xml).text();
  			$("#testimonials .testimonialblurb").html("<a href='/advantage/customercomments/" + testimonial_id + "'>\"" + blurb + "\"</a>");
  			$("#testimonials .testimonialname").html("- " + name);
  			
		});
		
		
		
            $("#testimonials p").fadeOut(2000);
            $("#testimonials p").fadeIn(2000, function() {
							removeFilter($(this)[0]);
			});
        
        
        setTimeout((function() {
            myfunction();
        }), '30000');
    };
     
     // **** remove Opacity-Filter in ie ****
	function removeFilter(element) {
		if(element.style.removeAttribute){
			element.style.removeAttribute('filter');
		}
	}
 
 }); 
