// JavaScript Document


$(document).ready(function () {

	init_target_blank();
})

function printFacebookLikeBtn(currentPage){
	document.write('<iframe src="http://www.facebook.com/plugins/like.php?href='+currentPage+'&amp;layout=standard&amp;show_faces=true&amp;width=160&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:160px; height:80px; margin:auto; display:block" allowTransparency="true"></iframe>');
}



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






