jQuery(document).ready(function($) {
    $('a').click(function() {
        if ($(this).attr('href') === '#') {
            return false;
        }
    }).hover(function() {
        if ($(this).attr('rel') === 'external') {
            $(this).attr('target', '_blank');
        }
    });
});