function loadPic() {

	var i = Math.floor(7*Math.random()+1);
	var n = 0;
	var currentTime = new Date()
	var currentDate = currentTime.getDate();
	if (i >= 10) {
		n = 1;	
	}
	switch(n)
	{
		case 1:
			lz = "0";
		break;    
		default:
			lz = "00";
	}
//alert(lz+i);
//alert(currentDate);
document.write('<img src="images/pictures/home_page/pic_' + lz + i + '.jpg" hspace="0" vspace="2" align="left" style="margin-right:16px;" width="135" height="90" border="0" alt="Random image" />');


}