function getLacquer (the_name, the_color, the_black) {
	if (the_black == "black") {
		var bottle = "blankBottle_black.png";

	} else {
		var bottle = "blankBottle_white.png";
	}
	$('template').setStyle({backgroundImage:"url(images/butter_london/" + bottle + ")"});
	$('bottle').setStyle({backgroundImage:"url(images/butter_london/" + the_color + ")"});

	var url = "includes/swatch.php";
	var divID = "description";
	var pars = "name=" + the_name + "&r=" + Math.floor(Math.random()*1000);
	var doBottle = new Ajax.Updater(divID, url, {method: 'get', parameters: pars});
	return false;
}
