/*
【ソース元】
http://js.agilmente.com/2010/04/21/47/
*/

$(document).ready(function(){
	$('a[rel=_blank]').click(function(){
		this.target = "_blank";
	});
});


