$(function() {

	$('ul#advertisers a').click(function() {
		pageTracker._trackPageview('/adpage/'+$(this).html());
	});

});


// Function to add/remove "over" class for drop down nav - remove if not needed
$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});

};   
