var updateMsgTimes = 0;
$(function() {
  updateMsg();
});

/* === enquiry icon === */
function updateMsg()
{
 if(updateMsgTimes < 100)
 {
  updateMsgTimes++;
  $.get("/enquiry.php", { action:'record_count' }, function(data) {
   msg = (data == "0") ? "" : data; 
   pos = (data == "0") ? '0' : '-200';
   $("#page_cart").css('background-positionY',pos + "px").html(msg);
  });
 }
 setTimeout('updateMsg()', 10000);
}
