/**
 * Matt Williams - mattwilliamsnyc.com
 *
 * @author  Matt Williams <matt@mattwilliamsnyc.com>
 * @version $Id: mw.js 326 2011-01-13 21:45:23Z rmw201 $
 */
var mw = {
    init: function() {
        $("a[rel*='external']").click(function() {
            window.open($(this).attr("href"));
            return false;
        });
    }
};
mw.init();

