 jQuery.noConflict();
(function($) 
{ 
	$(document).ready(function()
	{
		$('#columns li').click(function(event)
		{			
			var href = $('a:first', this).attr('href');
			location.href = href;
		});
	});
})(jQuery);
