
var Local = {

    onCommentReply: function(id) {
		Comments.openReply(id);
	},

    onCancelReply: function(id) {
		Comments.closeReply();
	}

};

(function($) {

	$(document).ready(
		function() {
			$('table tr th:first').each(
				function() {
					$(this).addClass('first-child')
				}
			)
			$('table tr th:last').each(
				function() {
					$(this).addClass('last-child')
				}
			)
			$('input, textarea, select').each(
				function() {
					$(this).focus(
						function() {
							$(this).addClass('focused')
							$(this).siblings('label').addClass('focused')
						}
					)
					$(this).blur(
						function() {
							$(this).removeClass('focused')
							$(this).siblings('label').removeClass('focused')
						}
					)
				}
			)
			mypartdPrettify();
		}
	)
	
	function mypartdPrettify() {
		if(!$('.testimonials').size()) {
			return
		}
		
		var content = $('div.page-content').html()
		content = content.replace(/My Part D USA/gi, '<span class="mypartd">My Part D USA</span>')
		$('div.page-content').html(content)
	}

})(jQuery);
