var strings = new Array();
var titlea = new Array();
var texta = new Array();
var linka = new Array();
var trgfrma = new Array();
var heightarr = new Array();

//4 values are necessary per string (Title || description ||url, and target)  Separate values with double pipe ||



// strings.push("This Month Bruce Norris||The Seven Pieces of a Great Real Estate Investor||index.aspx||_parent");


strings.push("This Month Tony Alvarez || How to profit from bank owned REOs in 2010 ||index.aspx||_parent");


// strings.push("Next Month Bruce Norris||The Seven Pieces of a Great Real Estate Investor||index.aspx?file=nextMonth||_parent");

// strings.push("Unlock the Secrets of Real Estate Financing ||As a real estate investor, how many deals have you passed up and how many bad deals have you taken because you couldn't properly calculate the real value of your deal with your financial calculator?  Join us for our meeting before the meeting, where Robert Taylor will work through examples from his new eBook <i>Calculator Secrets</i> that will help you make better deals.||http://www.calculatorSecrets.com?vid=norcal||_blank");

for (i=0;i<strings.length;i++)
{
    var str = strings[i];
    var strArray = str.split('||');
    titlea.push(strArray[0]);
    texta.push(strArray[1]);
    linka.push(strArray[2]);
    trgfrma.push(strArray[3]);
}
var mc=strings.length;
