function mfbttime() {
now=new Date();
hour=now.getHours();
min=now.getMinutes();
sec=now.getSeconds();
day=now.getDay();

if ( (day > 0 && day < 6) && (hour < 17 && hour > 7) ) { 
	mfbt_content = '<p class="no">NO. Get back to work.</p>';
} else {
	mfbt_content = '<p><a href="http://www.flickr.com/photos/tags/mfbt/interesting/"><img src="mfbt.jpg" width="630" height="427" alt="MFBT"></a></p>';	
}

// Summit

mfbt_content = '<p><a href="http://www.flickr.com/photos/tags/moz10/interesting/"><img src="mfbt-summit.jpg" width="630" height="427" alt="MFBT" id="mfbt"></a></p><div id="fromage">Happy Summiting, Mozilla!</div>';



if (document.getElementById) { document.getElementById('theTime').innerHTML = mfbt_content; }
else if (document.layers) {
document.layers.theTime.document.write(mfbt_content);
document.layers.theTime.document.close(); }

}

window.onload = mfbttime();