var $e = jQuery.noConflict();

$e(function(){

$e('a:not([href^="http://www.adailydoseofsugar.com"]):not([href^="#"]):not([href^="/"])').addClass('external');

$e('a[class="external"]')
.click( function() {
window.open( $e(this).attr('href') );
return false;
});

});
