// --------------------- rigasp.com common ------------------------------

/* Display header */
function displayHeader() {
  document.write("<div id=\"container\">");
  document.write("<div id=\"hMenu\">");
  document.write("<ul class=\"menuList\">");
  document.write("<li><a title=\"Photos of me and my friends\" href=\"photos.html\">PHOTOS</a></li>");
  document.write("<li><a title=\"My news\" href=\"http://www.rigasp.com/blog/index.html\">NEWS/BLOG</a></li>");
  document.write("<li><a title=\"Favourite links\" href=\"favourites.html\">FAVOURITES</a></li>");
  document.write("<li><a title=\"Maps related to me\" href=\"maps.html\">MAPS</a></li>");
  document.write("<li><a title=\"Home page\" href=\"index.html\">HOME</a></li>");
  document.write("</ul>");
  document.write("</div>");
}

/* Returns the code to write a <td> in the thumbnails table */
function writeThummbnail(photoname) {
  document.write('<img src="' + thumbDir + '/' + thumbPrefix + photoname + '.jpg" border=0 />');
} 


function displayHead() {
  document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"common/styles.css\" />");
  document.write("<link rel=\"icon\" href=\"favicon.ico\" type=\"image/x-icon\" />");
  document.write("<link rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image/x-icon\" />");
  document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">");
  // To do check browser type and put appropriate css 
}

function displayFooter() {
  document.write("<div id=\"footer\">");
  document.write("<p>Rigas Parathyras <a href=\"http://www.rigasp.com\">www.rigasp.com</a> 2009</p></div>");
  document.write("</div>");
  document.write("</div>"); // container 
  // To do autoinclude google analytics
}

/* Display emals */
function display_emails() {
  var username = ['rigasp'];
  var domain = ['gmail.com'];
  for (var i = 0; i < 1; i++) {
	var email = username[i] + '@' + domain[i];
	document.write('<a href="mailto:' + email + '">' + email + '</a><br/>');
  }
}

/* Display instant messaging */
function display_im() {
  var username = ['rigasp'];
  var domain = ['gmail.com'];
  var email = username[0] + '@' + domain[0];
  document.write(email);
}

