﻿/*
** VisitorsTwoColumn.Master.js
**
** This script looks in the main content body (div#contentArea) for
** a horizonal rule with the css class 'greyBk' (hr.greyBk).  If
** it finds the hr element, it wraps all of the following content
** with a div element with a css class of 'greyBk' i.e.
** (<div class='greyBk'>...</div>).
**
** See also...
** /css/contenmt.css
*/
$(function() {
	$("div#contentArea hr.greyBk")
	.nextAll().wrapAll("<div class='greyBk'></div>")
	.end().remove();
});