var companies;

$(document).ready(function(){
	$.getJSON('company.php', {action: 'ajaxGetFeatured'}, companySetup);
});

function companySetup(data)
{
	companies = data;
	changeCompany();
}

function changeCompany()
{
	var index = $("html").data("companyIndex");
	
	if(!index && index != 0)
	{
		index = 0;
	}
	else
	{
		index++;
		
		if(index >= companies.length)
		{
			index = 0;
		}
	}
	
	$("html").data("companyIndex", index);

	$("html").data("companyIndex", index);
	
	$("#featuredCompany").fadeOut(1000, function ()
	{
		var html = "<a href=\"" +companies[index].url +"\">" +companies[index].name +"</a>"; 
		
		$("#featuredCompany").html(html).fadeIn(1000);
		window.setTimeout(changeCompany, 6000);
	});
}
