function _news() {
	
	//method to toogle a news content
	this.toogleContent = function (newsid) {
		var c = document.getElementById('newscontent_'+newsid.toString());
		if (c) {
			c.style.display='block';		
		}
	}	
}

var news = new _news();


