/**
 * Update Basket Script
 * Dependencies: Mootools v1.1+
 * @author Kevin Dew <kev@dewsolutions.co.uk>
 * @copyright Copyright Kevin Dew, 2007
 */

function updateBasket(items)
{
	if($('basket_items') && ($('basket_items').getText() != items))
		$('basket_items').setText(items);
}