$(document).ready(function() {
	// send request
	$.post("refreshcompany.action", {}, refreshCompany);
	//startRotating();
});

function refreshCompany(response)
{
	$("#refreshDiv").html(response);
	setTimeout(function() {
		$.post("refreshcompany.action", {}, refreshCompany);
	}, 10000);
}

var currentId = 0;
var imgSources = [
	"../images/tall_ships.jpg", 
	"../images/sailboats_home.jpg",   
	"../images/boston_tea_party.jpg" 
	];

function startRotating()
{
	$("#homeImg").remove();
	var img = new Image();
	img.src = imgSources[currentId];
	currentId++;
	currentId %= imgSources.length;
	img.id = "homeImg";
	$("#homeImgParent").append(img);
	
	setTimeout(function() {
		startRotating();	
	}, 10000);
}
