function formatTitle(title, currentArray, currentIndex, currentOpts) {
  return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="catalog/view/javascript/jquery/fancybox/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}

$(document).ready(function(){
  // Category menu
  makeCategoryTree(document.getElementById('category_tree'));
  // Thickbox
  $("a.thickbox").fancybox({
    'speedIn'         : 100,
    'speedOut'        : 100,
    'height'          : 550,
    'width'           : 650,
    'showCloseButton' : false,
    'titlePosition'   : 'inside',
    'titleFormat'     : formatTitle
  });
  $("a.popup").fancybox({
    'speedIn'        : 100,
    'speedOut'       : 100,
    'height'         : 550,
    'width'          : 650,
    'autoScale'      : false,
    'autoDimensions' : false
  });
  // Main menu
  $('.nav').superfish({
    hoverClass   : 'sfHover',
    delay        : 0,
    animation    : {height: 'show'},
    speed        : 'fast',
    autoArrows   : true,
    dropShadows  : true,
    disableHI    : false
  });
  $('.nav').css('display', 'block');

  // Search
  $('#search .left').bind('click', function() {
    url = 'index.php?route=product/search';

    var filter_name = $('input[name=\'filter_name\']').attr('value')

    if (filter_name) {
      url += '&keyword=' + encodeURIComponent(filter_name);
    }

    location = url;
  });

  $('input[name=\'filter_name\']').keydown(function(e) {
    if (e.keyCode == 13) {
      url = 'index.php?route=product/search';

      var filter_name = $('input[name=\'filter_name\']').attr('value')

      if (filter_name) {
        url += '&keyword=' + encodeURIComponent(filter_name);
      }

      location = url;
    }
  });
});

