$(document).ready(function() {
	// target external links into new windows
	$('a').each(function(index) {
		if ($(this).attr('rel') == 'external') $(this).attr('target', '_blank');
	});

	// activate background links
	// $('a.bg').each(function(index) {
	// 	alert($(this).attr('id'));
	// });
});
