
$().ready(function() {
	$("#select").autocomplete(trades, {
		matchContains: "trade",
		minChars: 2,
				max: 120,
		formatItem: function(item) {
			return item.trade;
		}
		}).result(function(event, item) {
			location.href = 'http://www.simplybusiness.co.uk/autotrader/dorfq/imp_tradesmen/1.htm?attr6950=' + item.categorycode + '&formNav=1&formCurrentNav=1&attr6951=' + item.tradecode;
	});
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});

