// JavaScript Document

$(document).ready(function(){
			
	$(".openExternal").click(function(){
		window.open(this.href);
		return false;
	});

	$('div.post, div.comment').corner("round all 5px");
});
