$(document).ready(function(){
	
	$('a[rel="out"]').click(function(){
        window.open($(this).attr('href'));
        return false;
    });

});
