﻿/* Add extra div around search resutls so they can be styled with a box. */
$(document).ready(
    function RoundWebPartHeader() {
        $(".srch-AutoCompList").each(function () {
            $(this).wrap('<div class=\"container\">')
            .parents('div:first').append('<b class=\"rbottom\"><b class=\"r4\"></b> <b class=\"r3\"></b> <b class=\"r2\"></b> <b class=\"r1\"></b></b>')
          });
    }
);
