$(document).ready(function() {
	if($('.cart').length) 
	{
		$.post("/cgi-bin/dsp.pl", { cl: "order", event: "show_basket_info", rnd: Math.random(), utf8: 1 }, 
		function(data) {
			$('.cart').html(data);
		});	
	}
	
});
