function loadBrandImage() {
	
	var brand_img = document.getElementById("brandimage");
	var brand_img2 = document.getElementById("brandimage2");

	var currentdate = 0;
	var core = 0;
	
	function StringArray (n) {
		this.length = n;
		for (var i =1; i <= n; i++) {
			this[i] = ' ';
		}
	}
	
	images = new StringArray(7);
	images[0] = 'chefsbrigade';
	images[1] = 'sunblush';
	images[2] = 'merchantgourmet';
	images[3] = 'cherrybell';
	images[4] = 'roquito';
	images[5] = 'mgchefs';
	images[6] = 'charcuti';

	
	var ran = 60/images.length;

	function random_image() {
		currentdate = new Date();
		core = currentdate.getSeconds();
		core = Math.floor(core/ran);
		return(images[core]);
	}
	
	if (brand_img) {
		brand_img.src = "uploads/images/home-our-brands-" + random_image() + ".jpg";
	}
	if (brand_img2) {
		brand_img2.src = "uploads/images/our-brands-" + random_image() + ".jpg";
	}
}


