﻿function showQuote(val){
            $("#col_03 blockquote").html("please wait, loading...");
            $("#col_03 ul").remove();
            $.get("ajax_testimonials.asp?id=" + val,"",function(d){
                $("#col_03").html(d);
            });
        }
