$(document).ready(function() {
	$(".nicebox").each(function() {
		if ( !$(this).hasClass("notop") ) {
			$(this).prepend('<div class="edge round4"></div><div class="edge round2"></div><div class="edge round1"></div>');
		}
		
		if ( !$(this).hasClass("nobottom") ) {
			$(this).append('<div class="edge round1"></div><div class="edge round2"></div><div class="edge round4"></div>');
		}
	});
});