// JavaScript Document
//jquery.newslist.js


/*



*/
function toggleNews(){
	if(jQuery('#news_bar').css('width') != '220px'){
		jQuery('#news_bar').animate({ 
        width: "220px"
        //,opacity: 0.4,
        //marginLeft: "0.6in",
        //fontSize: "3em", 
        //borderWidth: "10px"
      	}, 500 );
	}else{
		jQuery('#news_bar').animate({ 
        width: "0px"
        //,opacity: 0.4,
        //marginLeft: "0.6in",
        //fontSize: "3em", 
        //borderWidth: "10px"
      	}, 500 );
	}
	}
