﻿jQuery(document).ready(function($) {
    $sel = $("div.recepyListPager .recepyListPagingButtons:gt(0)");
    $sel2 = $sel.filter(":lt(" + ($sel.length - 2) + ")");
    if ($sel2.length > 0)
    {
        $sel2.after("&nbsp;|");
    }
});


