$(document).ready(function(){
	//
	//Fix XHTML target='_blank' problem by finding all external 
	//links (rel='external') and making them open a new blank window...
	//
	$("a[rel='external']").each( function(i) {
		$(this).attr("target","_blank");
		$(this).attr("title",$(this).attr("title")+" [off-site link - opens in a new window] ");
	});
	//End
	
	//Initialise curvy corners for comments
	$('.inner').corner({
		tl: { radius: 16 },
		tr: { radius: 16 },
		bl: false,
		br: { radius: 16 }});
	$('.c3').corner({
		tl: { radius: 16 },
		tr: { radius: 16 },
		bl: false,
		br: { radius: 16 },
		antiAlias: true,
		autoPad: false,
		validTags: ["div"] });
	//End
	
});
