$(document).ready(function(){
	
	//Add code to add additional "what's the best" items
	$("#moreBests").click(function(){
		var theBest = $('.oneBest').eq(0); // grab the last "the best"
		var clone 	= theBest.clone().insertBefore('.bests p'); // create a duplicate
		$('select,textarea', clone).val('') // clean out any values
		return false; // make sure the clicks dont' go through.
	});

});