$(document).ready(function(){
	check_cart();
});



function check_cart(){
	$.post("/check_header_cart.php",{id:"0"},function(data,textStatus){
	if(textStatus=='success')	
		{
    $('#cart').empty().append('Warenkorb:<a href="http://www.uggstore.de/order.php?=QnchNGdzlGbENTJ0NWY2ITJ1cTY3M2M4Q0MlUGZvNmd"" style="color:#2eaaf9; text-decoration:underline; padding-right:0;">'+data.num+' '+'Artikel</a>');
		}
			},"json");	

}
