// To update the highlights box on the home page, change top half of this file

// ****************************************************************
// put the numbera of the two news post BETWEEN THE QUOTES
// You can see the codes at the end of the URL when you are looking 
// at the full story, for example if the story is at
// http://www.briankavanagh.org/news/?p=173, then the first line
// should read:
//  var pCode1 = "173";
// ****************************************************************

var pCode1 = "9056";
var pCode2 = "9146";
var pCode3 = "8874";




// ****************************************************************
// Put the titles of the news stories here, BETWEEN THE QUOTES
// as they should appear in the highlights box.
// ****************************************************************

var title1 = "Kavanagh Gets Green Thumbs Up"
var title2 = "Kavanagh Urges City to Jump-Start New School, Allieviate Crowding";
var title3 = "Eastside Greenway and Parkland Plan Signed";

      


// ****************************************************************
// Put the dates of the two stories here, BETWEEN THE QUOTES
// for example, the first line might read:
// var date1 = "July 15, 2009";
// ****************************************************************

var date1 = "October 25, 2011";
var date2 = "October 20, 2011";
var date3 = "October 5, 2011";


// ****************************************************************
// Do not edit below this line.
// ****************************************************************


var html = '<a href="news/?p=';
html += pCode1;
html += '">';
html += title1;
html += "</a>&nbsp;&nbsp;&nbsp;&nbsp;";
html += date1;

html += '<a href="news/?p=';
html += pCode2;
html += '">';
html += title2;
html += "</a>&nbsp;&nbsp;&nbsp;&nbsp;";
html += date2;

html += '<a href="news/?p=';
html += pCode3;
html += '">';
html += title3;
html += "</a>&nbsp;&nbsp;&nbsp;&nbsp;";
html += date3;
