// JavaScript Document
$(document).ready(function()	{
	external();					   
});

function external()	{
	$("a[target='_blank']").each(function(i)	{
		theLink = $(this).attr("href");
		$(this).attr("href", "/external.php?site=" + theLink);
	});
}
