jQuery(document).ready(function() {

	jQuery("#topList .tabtoplistlink").click( function () {
		jQuery('#topList .tabtoplistcontent').hide();
		jQuery('#topList .menu a').removeClass('active');
		refreshDynamicBlocks();
	});

	jQuery("#topList #nouveautesTab").click( function () {
		jQuery('#topList #tabtoplist1').show();
		jQuery('#topList #nouveautesTab').addClass('active');
	});
	
	jQuery("#topList #pluslusTab").click( function () {
		jQuery('#topList #tabtoplist2').show();
		jQuery('#topList #pluslusTab').addClass('active');
	});
	
	jQuery("#topList #pluscommentesTab").click( function () {
		jQuery('#topList #tabtoplist3').show();
		jQuery('#topList #pluscommentesTab').addClass('active');
	});
	
});
