$(document).ready(function(){
	$("#nl_name").focus(function(){
		if ($(this).val() == 'Name')
			$(this).val('');
	});
	$("#nl_name").blur(function(){
		if($(this).val() == '')
			$(this).val('Name');
	});
	$("#nl_email").focus(function(){
		if ($(this).val() == 'Email address')
			$(this).val('');
	});
	$("#nl_email").blur(function(){
		if($(this).val() == '')
			$(this).val('Email address');
	});

	$('#main').corners("40px bottom");
	$('.month').corners("5px top");
	$('.day').corners("5px bottom");
	$('.entry a:hover').corners("2px");
	$('.commentlist li').corners("3px");
	$('.comment-author').corners("2px");
});