﻿jQuery(document).ready(function() {
    // strip out ;# separators from multiple selected choice fields
    $(".strip_hash").each(
 		function() {
 		    var el = $(this);
 		    el.html(el.html().replace(/^;#/, '').replace(/;#$/, '').replace(/;#/g, ', '));
 		}
	);

    // concatenate site and Current classes for flyout menu css in navigation
    $('.site .Current').each(function() {

        $(this).attr("class", this.className.replace(/ Current/gi, 'Current'));
    });

    // strip trailing whitespace
    $(".trimspace").each(
 		function() {
 		    var el = $(this);
 		    el.html(el.html().replace(/&nbsp;$/, ''));
 		}
	);

});


