jQuery(document).ready(function($){
										  
	$(".out").each(function() {
	  $(this).wrap('<a href="/out/' + this.id + '" target="_blank"/>');
	});

	$(".productLink").each(function() {
	  $(this).wrap('<a href="/product/' + this.id + '" />');
	});
	
	$.history.init(function(hash){
		if(hash == '') {
		}else if(hash.substr(0, 4) == 'merk') {
		} else {
			$('#tdContent').load('/ajax/products.php?' + hash);
		}
	},
	{ unescape: ",/" });
	
});

function recordOutboundLink(link, category, action) {
  try {
	 var myTracker=_gat._getTrackerByName();
	 _gaq.push(['myTracker._trackEvent', ' + category + ', ' + action + ']);
	 setTimeout('document.location = "' + link.href + '"', 100)
  }catch(err){}
}
