// JavaScript Document
$(document).ready(function(){

	init_email_spam_catch();
	init_target_blank();	
	
});

function init_target_blank(){
	
	$('.tb, si').each(function(){
		$(this).click(function(e){
				e.preventDefault();
				window.open(this.href);
				
		});
	
	});
	
}

