$(document).ready(function() {		
	$('div.link_item_desc div').expander({
		userCollapseText: 'Less'
	});	
	
	$('div.link_item_html a.al').click(function() {	  
		var domEl = $(this).get(0);		
		var aid = domEl.id.replace("a", "");
		tc(aid);		 
		window.open("http://www.ohpromocodes.com/deal/" + aid);
		return false;
	});		
	
	$('div.link_item_html_view a.al').click(function() {	  
		var domEl = $(this).get(0);		
		var aid = domEl.id.replace("a", "");		
		tc(aid);		 
		window.open("http://www.ohpromocodes.com/deal/" + aid);
		return false;
	});	
});

function tc(id) {
  try {
	// _trackEvent(category, action, opt_label, opt_value) - http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html	
	_gaq.push(['_trackEvent', 'Deals', 'Go', id]);
  }catch(err){}
}


