/*

quote[0] = '<p class=snapshot-text>Anthony J. Biller<br>' +
'North Carolina Secretary of State<br></p>' + 
 '<p class=snapshot-text><a href=Scripts/\'prospective-students/featured-alumni-ind.cfm?alumniid=1\' style=\'color:White\'>Read Snapshot</a></p>' 
 
quote[1] = '<p class=snapshot-text>Elaine Marshall</p>' +
'<p class=snapshot-text><a href=Scripts/\'prospective-students/featured-alumni-ind.cfm?alumniid=3\' style=\'color:White\'>Read Snapshot</a></p>' 

quote[2] = '<p class=snapshot-text>The Honorable Ann Marie Calabria<br>'+ 
'Judge, North Carolina Court of Appeals</p>' +
'<p class=snapshot-text><a href=Scripts/\'prospective-students/featured-alumni-ind.cfm?alumniid=4\' style=\'color:White\'>Read Snapshot</a></p>' 

quote[3] = '<p class=snapshot-text>Mark T. Calloway<br>'+
'Attorney, Alston & Bird, LLP<br>'+
'Former Director of the Executive Office for United States Attorneys, US Department of Justice <br>'+
'Former United States Attorney for the Western District of North Carolina</p>' +
'<p class=snapshot-text><a href=Scripts/\'prospective-students/featured-alumni-ind.cfm?alumniid=5\' style=\'color:White\'>Read Snapshot</a></p>'

quote[4] = '<p class=snapshot-text>Rebecca J. Britton<br>'+
'Hutchens and Senter<br>'+
'Immediate Past President, NC Academy of Trial Lawyers</p>'+
'<p class=snapshot-text><a href=Scripts/\'prospective-students/featured-alumni-ind.cfm?alumniid=6\' style=\'color:White\'>Read Snapshot</a></p>'

image[1] = 'images/snapshots/elainemarshall.jpg'
image[2] = 'images/snapshots/JudgeCalabria.jpg'
image[3] = 'images/snapshots/markcalloway.jpg'
image[4] = 'images/snapshots/rebeccabritton.jpg'

*/

function getSnapshotTable() {
    var data = [ { name: 'Anthony J. Biller',
                    title: 'Coats & Bennett PLLC<br />Cary, NC',
                    alumniid: 1,
                    image: 'Anthony-Biller.jpg'},
                 { name: 'Elaine Marshall',
                    title: 'North Carolina Secretary of State',
                    alumniid: 3,
                    image: 'elainemarshall.jpg'},
                 { name: 'Ann Marie Calabria',
                    title: 'Judge, North Carolina Court of Appeals',
                    alumniid: 4,
                    image: 'JudgeCalabria.jpg'},
                 { name: 'Mark T. Calloway',
                    title: 'Attorney, Alston & Bird, LLP<br />Former Director of the Executive Office for United States Attorneys, US Department of Justice<br />Former United States Attorney for the Western District of North Carolina',
                    alumniid: 5,
                    image: 'markcalloway.jpg'},
                 { name: 'Rebecca J. Britton',
                    title: 'Hutchens and Senter<br />Immediate Past President, NC Academy of Trial Lawyers',
                    alumniid: 6,
                    image: 'rebeccabritton.jpg'},
				 { name: 'Richard M. Thigpen',
				    title: 'General Counsel, Carolina Panthers',
					alumniid: 7,
					image: 'richardthigpen.jpg'}
                    ];

    var currentdate = new Date()
    var which = currentdate.getSeconds() % (data.length);
    
    return '<table width="194" border="0" cellspacing="0" cellpadding="0"><tr><td style="border-bottom-style:none;border-right-style:none;width:11px;text-align:center;"><img src="f3/light_tri_on_gray.gif" width="11" height="17" /></td><td width="190" style="border-bottom-style:none;">' + 
        data[which]['name'] + 
        '</td></tr><tr><td colspan="2" valign="top"><p><img src="images/snapshots/' + 
        data[which]['image'] + 
        '" width="94" style="padding-left:8px;" align="right" />' 
        + data[which]['title'] + '</p><div class="dotted-hr"></div><p><a href="prospective-students/featured-alumni-ind.cfm?alumniid=' 
        + data[which]['alumniid'] 
        + '">Read Snapshot</a></p></td></tr></table>';
}

