$(document).ready(function() {
		
        $.ajaxSetup ({
        // Disable caching of AJAX responses */
        cache: false
        });


		//$('#widgetbox').click(function() {
			//alert('Handler for .click() called.');
			//});

	 });

		<!-- start a function that will fade out the current content-->
        function refreshProducts() {

           $("div#testimonials .inner").fadeOut(250, function() {

		   		<!-- empty the current content and then fetch new data -->
				$("div#testimonials .inner").empty
				<!-- load the getProducts.pho file which will replace all the content -->

			



//               $.ajax({ url: "testimonal.php", context: document.body, success: function(){
//                   $("#widgetbox").fadeIn();
//                }});


                


                $("div#testimonials .inner").load("../testimonial.php", function() {
                    $("div#testimonials .inner").fadeIn('slow');
                    
					 
					 //e.preventDefault();
                });
				
				
				
				
				
            });

        };

		<!-- initiate the function above -->
    	$(function(){
    		refreshProducts();

			<!-- set the interval for refreshing, default set to 6.5 seconds -->
    		var int = setInterval("refreshProducts()", 6500);

    	});
		
		
		
