window.onload = function()
{
  CCL.Center('page');
  window.ShopID = 0;
  if($('content') && /<CCL-SHOP-ID>(.*?)<\/CCL-SHOP-ID>/i.test($('content').innerHTML))
    window.ShopID = RegExp.$1;
  if(/project/.test(CCL.ThisPage))
  {
    if($('projectlist'))
      $('projectlist').style.display = 'none';
    if(window.ShopID == 0 && /\?([0-9]+)$/.test(document.location.search))
      window.ShopID = RegExp.$1;
    CCL.Init('Shop', start);
  }
}
function start()
{
  CCL.LoadScript('/lib/_ajax/Tentech.js', function()
  {
    window.Tentech = new Tentech(window.ShopID);
  }); 
}
function ShowImage(count)
{
  var images = $('picnav').getElementsByTagName('IMG');
  count = parseInt(count) - 1;
  if(count < 0)
    count = 0;
  if(count > images.length)
    count = images.length;
  images[count].onclick();
}
