// Make RSS Widget links open in a new window.
jQuery(document).ready(function(){
    // jQuery("a.rsswidget").attr('target','_blank');
    jQuery('a.rsswidget').click(function(){
        this.target = "_blank";
    });
});

// Make Email Feed link open in a new window
jQuery(document).ready(function(){
    jQuery('a#feedemail').click(function(){
        this.target = "_blank";
    });
});

