/*
 * Copyright 2008-2010 Jack Sleight <http://jacksleight.com/>
 * All rights reserved.
 *
 * Any redistribution or reproduction of part or all of the contents in any form is prohibited.
 */

var JS = JS || {};

JS.Blank = new Class(
{
	initialize: function(elements)
	{
		this.elements = elements.each(function(element) {
			element.set('target', '_blank');
		}.bind(this));
	}
});
