
function ch(a)
{
	if(a==1)
	{
		$id('news_title').className="news_title1";
		$id('news_con1').style.display="block";
		$id('news_con2').style.display="none";
	}
	if(a==2)
	{
		$id('news_title').className="news_title2";
		$id('news_con1').style.display="none";
		$id('news_con2').style.display="block";
	}
}

function $id(id)
{
	return document.getElementById(id);
}

/*$(function(){

$('.l a.subm').css( {backgroundPosition: "-224px 0px"} );
$('.l a.subm').mouseover(function(){
$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:600,easing:'easeOutBounce'});
});
$('.l a.subm').mouseout(function(){
$(this).stop().animate({backgroundPosition:"(-224px 0px)"}, {duration:600,easing:'easeOutBounce'});
});

});*/

$(function(){
$('ul.n2 a').not($('ul.n2 a.hover')).hover(function(){
$(this).find('i').stop().animate({top:'-43px'},300);
$(this).find('b').stop().animate({top:'0'},300);
},function(){
$(this).find('i').stop().animate({top:'0'},200);
$(this).find('b').stop().animate({top:'43px'},200);
})
})











