function getCookie(name){
var cookie,list,i,equals,match;
cookie=document.cookie;
if(cookie.length==0){
return '';
}

else{
list=cookie.split(';');
for(i=0;i<list.length;i=i+1){
equals=list[i].indexOf('=');
match=list[i].substring(0,equals);
if(match.substr(0,1)==' '){
match=match.substr(1);
}
if(match==name){
return list[i].substring(equals+1,list[i].length);
}
}
return '';
}
}

var eyC=getCookie("count");
var eyST=getCookie("subtotal");
if (eyC.length==0)
{
document.write("<div class='cartItems'>Items:<div class='items'>0</div></div><div class='cartTotal'>CART TOTAL: $0.00</div>");


}
else{
document.write("<div class='cartItems'>Items:<div class='items'>"+eyC+"</div></div><div class='cartTotal'>CART TOTAL: "+eyST+"</div>");


}

