var texts = [
{text:'<strong>January 16, 2012 -  Pagos Releases SpreadsheetWEB 3.3<br></strong>SpreadsheetWEB 3.3 features data consolidation, user groups, interactive charts, advanced logging and analytics<br>', 
   url:'press-20120116.html'},
{text:'<strong>July 1, 2011 -  Pagos Moves Headquarters to Cambridge, MA<br></strong>"Cambridge was simply the best option. It gives us access to a technological market that is rapidly and constantly growing. Cambridge is a major hub for technology so it is precisely where we need to be in order to develop as a company."<br>', 
   url:'press-20110701.html'},
   {text:'<strong>February 7, 2011 -  Pagos Releases SpreadsheetWEB 3.2<br></strong>SpreadsheetWEB 3.2 features version control and server monitoring support as well as significant enhancements to data visualization and dashboard reporting capabilities<br>', 
   url:'press-20110207.html'}
];
//to add new
//texts.push( {text:'information_text_here', url:'link_here'} );

var _u = document.getElementById('portfolio');
var _str = "";
for(var o in texts){
	var bl = 'none';
	if(o==0){bl='block';};
	_str += '<li style="display:'+bl+'">' + texts[o].text + '<a href="'+texts[o].url+'">Read Press Release</a></li>';
}
_u.innerHTML = _str;
