slogan = new Array();
slogan[1] = path+"images/toppic-home.jpg";
slogan[2] = path+"images/toppic-home1.jpg";
slogan[3] = path+"images/toppic-home2.jpg";
slogan[4] = path+"images/toppic-home3.jpg";
slogan[5] = path+"images/toppic-home4.jpg";
slogan[6] = path+"images/toppic-home5.jpg";


function showslogan() {
	var ln = slogan.length;
	var ry = Math.floor(Math.random()*ln);
	if (ry == 0) {
		ry = 1;
	}
	document.write('<img src="'+slogan[ry]+'">');
}
showslogan()