(function () {

	jQuery.fn.newwindow = function (options) {
	
		var opts = jQuery.extend({}, jQuery.fn.newwindow.defaults, options);
	
		return this.each(function () {
		
			var $this = jQuery(this);
		
			if ($this) {
			
				$this.click(function () {
				
					window.open(jQuery(this).attr("href"));
					
					return false;			
				
				});
			}		
		});
			
	};
	
	jQuery.fn.newwindow.defaults = {
	};


})(jQuery);