/*******************************************************************************
	TITLE: 			New Window (jQuery Plugin)
	
	AUTHOR:			Nathan Koch
	
	VERSION:		1.0
	
	REQUIRES:		jQuery v1.2.6 (obtained at jquery.com)
	
	EXPECTS:		jQuery object containing one or more a elements
	
	OPTIONS:		None
					
	DESCRIPTION:	Add Target Blank will add target="_blank" to whatever
					a elements are passed in. Best used for rel="external", 
					which actually contains some semantic meaning and 
					validates in XHTML (unlike the target attribute.)
*******************************************************************************/

(function($) {
    $.fn.extend({
        newWindow: function() {
            return this.each(function() {           
				$(this).attr("target", "_blank");
            });
        }
    });
}) (jQuery);