$(document).ready(function() {


	 $('.newsItem p:last').addClass('last');
     $('.newsItem h4:first').addClass('first');
     $('.newsDetail h4:first').addClass('first');
     $("td.EditingFormLabelCell:contains('*')").addClass('req');
     
     $(function() {

	// if the function argument is given to overlay,
	// it is assumed to be the onBeforeLoad event listener
	$("#news a[rel]").overlay({
		onBeforeLoad: function() {

			// grab wrapper element inside content
			var wrap = this.getOverlay().find(".contentWrap");

			// load the page specified in the trigger
			wrap.load(this.getTrigger().attr("href"));
		}

	});
});
	
});


