String.prototype.trim = function() {
	return this.replace(/^\s+|\s+$/g,"");
}

String.prototype.lpad = function(chr, size) {
	var str = this;
	while (str.length < size)
		str = chr + str;
	return str;
}

$(function(){$('.round').corner();});

