/*
 * Author: Daniele Asrael "theex" Tagliavini (dunderscoretagliaviniathotmaildotcom)
 */

jQuery(document).ready(function() {
	$('#searchText').autocomplete( rootPath + language + "/" + lang_products_path_name + "/" + lang_search_path_name + "/" + lang_search_auto_path_name, {
		width : 250,
		max: 30,
		scrollHeight: 220,
		minChars: 4,
		formatItem: function(row, i, max) {
			return row[0];
		},
		formatResult: function(row) {
			return row[0];
		}
	});

	$('#searchText').result(function(event, data, formatted) {
		document.location.href=data[1];
	});

    $('a[class^=subid]').click(function() {
  		var id = $(this).attr('class')
		$('li.subcath.'+id).slideToggle();
		if(typeof $(this).data('oldLinkText')=='undefined' || $(this).data('isOpen')=='') {
			//$(this).text(
		}
		return false;
	});

});