
function addBlog(l,d)
{
  blog[blog.length] = {link: l, desc: d};	
}

var blog = [];


/* add blogs in format
 * addblog("MyLinkName","Description of the link");
 */
addBlog("UK2006blog", "UK 2006");
addBlog("UK2009blog", "UK 2009");
addBlog("Rome2010blog", "Rome 2010");


for (var i = 0; i <blog.length; i++)
{
  document.write("<img src='http://www.clioratha.net/icon/scroll.gif'> <a target='_blank' href='http://www.clioratha.net/travel/" + blog[i].link + ".html'>"+blog[i].desc+"</a><br>");
}
