﻿function randomNumber(limit){
//	alert(Math.floor(Math.random()*limit))+1;
	return Math.floor(Math.random()*limit)+1;
}
function imgHome(){
	document.getElementById('imghome').src='images/home'+randomNumber(2)+'.jpg';
}
function imgLogo(){
	document.getElementById('logo').src='images/logo'+randomNumber(3)+'.jpg';
}