jQuery(document).ready(function() {
jQuery.noConflict();
jQuery(function () {
	var tabContainers = jQuery('#current_hits, #all_time_hits, #new_posts');	
	jQuery('div.tabs ul.tabNavigation a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		jQuery('div.tabs ul.tabNavigation a').removeClass('selected');
		jQuery(this).addClass('selected');
		return false;
	})
	
	.filter(':first').click();
});
});