
var toggleCount = false;

if($('newsCNT')) var  orgHeight = $('newsCNT').getHeight();




function news_move() {
	
 
  
 if($('newsCNT')){
  
	if(toggleCount==true){
	
new Effect.Morph('newsCNT', {
	
style:	'height:133px; border-width: 1px 1px 1px 0;',
duration:0.8

});

new Effect.Morph('newsCNT', {
	
style:	'width:0px;',
duration:0.8,
delay:0.8
});

new Effect.Morph('news', {
	
style:	'width:60px;',
duration:0.1,
delay:1.6
});
 
 

toggleCount=false;

	}else{

  
   
  $('news').setStyle({
  
  width: '300px'
  
  });
  
  
  $('newsCNT').setStyle({
  height: 133+'px',
  borderWidth: '1px 1px 1px 0'
  });
  
  
  new Effect.Morph('newsCNT', {
	
style:	'width:200px;',
duration:0.8

});
  
  


new Effect.Morph('newsCNT', {
	
style:	'height:'+orgHeight+'px;',
duration:0.5,
delay: 0.8
});
	
  
  
  
toggleCount=true;

	}


 }
  
}

function newsBTN_change(m_Stat){
	
	if(m_Stat==true){
	
$('newsBTN').src=_root+"gfx/newsBTN.over.png";	

	}else{
		$('newsBTN').src=_root+"gfx/newsBTN.png";
	}

}




