$(document).ready(function() {
	$('.js-corners').each(function() {
		var $this = $(this);
		$('<div class="corner-top"></div>').prependTo($this).prepend('<div></div>');
		$('<div class="corner-bottom"></div>').appendTo($this).prepend('<div></div>');
		$this.css({'border-top':'none', 'border-bottom':'none'});
	})
})