jQuery.noConflict();
jQuery(function() {
    jQuery('.reload').click(function() {
        jQuery('#productReview').fadeOut('fast', function(){
            jQuery('#testimonials .loading').fadeIn('fast');
            jQuery('#productReview').load('/ #productReview', function(){
                jQuery('#testimonials .loading').hide();
                jQuery('#productReview').fadeIn('slow');
            });
        });
    });
});
