   $(function(){
   // Text Insert
   $('.content-optlocation').before("<h2>Register now at the following locations:</h2>");
   });
   
   		    $(function(){
		
		        $('.node-type-seminars .date-display-start').each(function () {
		            var needle = "- 10:50pm";
		            var s = $(this).html();
		            if (  needle == s.substring(s.length-needle.length)  ) {
		                s = s.substring(0,s.length-needle.length);
		                $(this).html(s);
		            }
		        });
		    
		        $('.node-type-seminars .date-display-end').each(function () {
		            var needle = "- 10:50pm";
		            var s = $(this).html();
		            if (  needle == s.substring(s.length-needle.length)  ) {
		                s = s.substring(0,s.length-needle.length);
		                $(this).html(s);
		            }
		        });
		    });
