var $j = jQuery.noConflict();

$j(document).ready(function() {

$j('ul.news_tabs li').css('cursor', 'pointer');

$j('ul.news_tabs.news_tabs1 li').click(function(){
	var thisClass = this.className.slice(0,2);
	$j('div.n1').hide();
	$j('div.n2').hide();
	$j('div.n3').hide();
	$j('div.n4').hide();
	$j('div.' + thisClass).show();
	$j('ul.news_tabs.news_tabs1 li').removeClass('news_active');
	$j(this).addClass('news_active');
	});

});








