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;
}
