var ns_basketMini = function() {
/*********************************************************************************/
$(function() {	
	$('#ns_basketMini').live('click', function(){
		$('div.top a', this).click();
	});
});
/*********************************************************************************/
}();

basketMiniObj = new Object();

basketMiniObj.reload = function() {
	var old = $('#ns_basketMini');
	var here = here || $('input.here', old).val();
	$.get(here+'/basketMini.ajax.php', function(request) {
		old.after(request);
		old.remove();
	});
}

