/*
 * Repeat Plugin
 * Chreated by: Chris Richards
 * http://zensoftware.org/archives/203
 *
 * Useage:
 * $("table > tr").repeat( width, "<td></td>" );  
 */
//Repeater Plugin
jQuery.fn.repeat = function(times, string) {
	//For each item matched
	this.each(function(){
		var buff = string;
		for(var i=1; i < times; i++){
			buff += string;
		}
		jQuery(this).append(buff);
	});
	return this;
}

