setInterval(bottomCart, 5000);
function bottomCart ()
{
var cartbottom;
$("[id='shopCartBottom']").empty();
var totitem = $("[id='totitem']").html();
var prtot = $("[id='#prtot']").html();
if (totitem) cartbottom = '<a href="./korzina/"><img src="http://png.findicons.com/files/icons/1676/primo/128/shopping_bag.png" height="48px" align="left"><h2 style="padding-top:0px; margin-top:10px; font-size:16px;">Корзина<br>'+totitem+' шт. на сумму '+prtot+' руб.</a>';
else cartbottom='<img src="http://png.findicons.com/files/icons/1676/primo/128/shopping_bag.png" height="48px" align="left"><h2 style="padding-top:0px; margin-top:10px; font-size:16px;">Корзина<br>ожидает товаров...</h2>';
$("[id='shopCartBottom']").replaceWith(cartbottom);
}