function clock()
{
	var today = new Date();
	var hours = today.getHours();
	var minutes = today.getMinutes();
	var seconds = today.getSeconds();
	var time_holder; // holds the time
	// add a leading zero if less than 10
	hours = ((hours < 10) ? "0" + hours : hours);
	minutes = ((minutes < 10) ? "0" + minutes : minutes);
	seconds = ((seconds < 10) ? "0" + seconds : seconds);
	time_holder = hours + ":" + minutes + ":" + seconds;
 
	document.getElementById('jsClock').innerHTML = time_holder;

	// keep the clock ticking
	setTimeout("clock()", 1000);
}

// function display_poster(){
  //area to diplay poster in
//  var posterarea = document.getElementById('left');
  //posterarea.innerHTML = '<div id="poster"><a href="/static/gfx/macsimum_ledige_stillinger.pdf" title="Ledige stillinger"><img src="/static/gfx/macsimum_stilling_ledig.png" alt="Ledige stillinger - Last ned PDF"></a></div>';
//  posterarea.innerHTML = '<div id="poster"><img src="/static/gfx/macsimum_screen.png" alt="Event"></div>';
//  return false;
//}
function display_gazelle(){
  //area to diplay poster in
  var wrapper = document.getElementById('wrapper');
  wrapper.innerHTML += '<div id="gazelle"><a href="http://www.dn.no/gasellene/article1765221.ece" title="Macsimum havnet p&aring; &aring;rets Gaselleliste Les mer p&aring; DN.no"><img src="/static/gfx/macsimum_gaselle.png" alt="Macsimum havnet p&aring; &aring;rets Gaselleliste Les mer p&aring; DN.no"></div>';
  return false;
}

