jQuery(document).ready( function () {
	jQuery('a[href^="http"]').not('[href*="www.tryzoom.com"]')
		.click(function(){
        window.open(this.href, '_blank');
        return false;
    }).addClass("external_link");
});
