$(document).ready(function() {
	
	$('.popular-content-widget .tabs-labels li.active:first').each(function() {
		var tab_id = $(this).attr('rel');
		$('.popular-content-widget .tabs-tab-content[rel="'+tab_id+'"]').show();
	});
	$('.popular-content-widget .tabs-labels li').click(function() {
		var tab_id = $(this).attr('rel');
		$('.popular-content-widget .tabs-labels li').removeClass('active');
		$(this).addClass('active');
		$('.popular-content-widget .tabs-tab-content').hide();
		$('.popular-content-widget .tabs-tab-content[rel="'+tab_id+'"]').show();
	});

});
