// jquery.custombox.js - jQuery-based custom box plugin

/* 
jQuery.fn.custombox = function() {
	return this.each(function() {												
		$(this).children().eq(0).wrap('<div class="i1"><div class="i2"><div class="i3">'+'</div></div></div>');
		$(this).prepend('<img src="http://registrar.utexas.edu/r/assets2/css/images/bg.shine.20.png" class="shine" />' + 
								 '<div class="bt"><div></div></div>')
					.append('<div class="bb"><div></div></div>'); 
	});
};
*/

// without the shine
/*
jQuery.fn.custombox = function() {
	return this.each(function() {												
		//$(this).children().eq(0).wrap('<div class="i1"><div class="i2"><div class="i3">'+'</div></div></div>');
		$(this).prepend('<div class="bt"><div></div></div>')
					.append('<div class="bb"><div></div></div>'); 
	});
};
*/
jQuery.fn.custombox = function() {
	return this.each(function() {												
		$(this).prepend('<div class="cbi"><div class="t">' + '</div>')
					.append('</div><div class="b"><div></div></div>'); 
	});
};

