$().ready(function() {
    $("#suggest1").autocomplete('/product.autocomplete.php',{
		matchContains: true,
		minChars: 1
    });

   $('#font-size a').click(function(){
      var size = this.id.substring(10);
      $('body').css('font-size',size+'%');
      $.cookie('font-size', size, {expires:90,path:'/'});
   });

});

