function countDown(oid,r) {
  o = document.getElementById(oid);
  r = parseInt(r,10) - 1; 
  day = Math.floor(r / (3600 * 24)); 
  mod = r % (24 * 3600); 
  hrs = Math.floor(mod / 3600); 
  mod = mod % 3600; 
  min = Math.floor(mod / 60); 
  sec = mod % 60; 

  hrs = (hrs > 9) ? hrs : '0' + hrs;
  min = (min > 9) ? min : '0' + min;
  sec = (sec > 9) ? sec : '0' + sec;
  timetext = (day?day+' DAYS ':'') + hrs + ":" + min + ":" + sec;
  o.innerHTML = timetext;
  if(r > 0)setTimeout(function(){countDown(oid,r);},1000);
}
function init_stocklist() {
  var t;
  $('.goodsList td').hover(function(){
    var self = this;
    t = setTimeout(function(){$(self).children('.stockList').children('div').slideDown();},1000);
  },function(){
    clearTimeout(t);
    $(this).children('.stockList').children('div').slideUp();
  });
}
function init_flashMain() {
  var strhtml = htmlFlash("./body/store/default/image/flash_banner/Gallery.swf", 960, 350,"storemain");
  $('#flashMain').html(strhtml);
}
$(document).ready(function(){
//  init_flashMain();
  init_stocklist();
});
