jQuery(document).ready(function($) {

	$("a").click(
		function(){
      			if(($(this).attr("class"))=='external') {
      				window.open(this.href);
      				return false;

			}
			return true;
		}
	);
});
