$(document).ready(function(){
													 
	// open external links in new window - class="external"
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	}).attr('title', 'Opens in New Window or Tab');




	// highlight on table rows
	$("table.newsletterlisting tr").hover(function(){
	  $(this).addClass("active");
	}, function() {
	  $(this).removeClass("active");
	}
	);
		
});



