﻿$(function () {
	$('#images').data("n", 0);
		// these pictures load after the page has loaded so we don't have to wait for them & they won't load if Javascript disabled
	$('#images').append("<img class='banner hidden' src='images/silos.jpg' alt='Quality grain storage. We&apos;re right up there.' />");
	$('#images').append("<img class='banner hidden' src='images/seeds.jpg' alt='So small. But so significant.' />");
	$('#images').append("<img class='banner hidden' src='images/grain.jpg' alt='Grain handling. You can trust in Chief.' />");

	setInterval("rotatePicture()", 8000);

});

function rotatePicture() {
	var n = ($('#images').data("n") + 1) % 4;

	// swap to next picture
	$('#images img.banner').fadeOut("400");
	$('#images img.banner:eq(' + n + ')').delay("400").fadeIn("fast");
	
	$('#images').data("n", n);


}
