/**
 * jQuery 
 */
if(jQuery) {
	(function($) {
		$.fn.bluebox = function() {
			this.each(function() {
				var me = $(this);
				me.addClass('blue-box');
				
				var middle = $("<div class='blue-box-main ui-helper-clearfix'/>");
				me.wrapInner(middle);
				
				var top = $("<table cellspacing='0' cellpadding='0' class='blue-box-shell-row'><thead/><tbody><tr> <td class='blue-box-tl blue-box-corner' /><td class='blue-box-tf'/><td class='blue-box-tr blue-box-corner' /></tr></tbody></table>");
				me.prepend(top);
				
				var bot = $("<table cellspacing='0' cellpadding='0' class='blue-box-shell-row'><thead/><tbody><tr> <td class='blue-box-bl blue-box-corner' /><td class='blue-box-bf'/><td class='blue-box-br blue-box-corner' /></tr></tbody></table>");
				me.append(bot);
			});
		};
	})(jQuery);
}

