/*======================================================================
	CORNERIZE
	--------------------------------------------------------------------
	Purpose: Injects elements to be used as hooks for background imagees
			 for rounded corners
	--------------------------------------------------------------------	
	Author:  Jon Aldinger, WebLinc LLC
	Date:    July 2009
	Version: 1.0
----------------------------------------------------------------------*/
(function($) {
	$.fn.cornerize = function() {  		
		return this.each(function() {
			$('<span class="corners-container"><span class="c-tl" /><span class="c-tr" /><span class="c-br" /><span class="c-bl" /></span>').appendTo($(this));
		});
	};
})(jQuery);