/*******************************************************************************/
/**CONFIGURATION SECTION********************************************************/
/*******************************************************************************/
//turns the image rotator on or off...
var rotator_on = true;

//directory the images are in...
var image_directory = 'homepage_headers';

//number of images to flip through...
var image_count = 3;

//amount of seconds to spend on each image...
var image_speed = 6;

//all the images need to be either gif of jpg...
var image_type = 'jpg';

//name of the static image on the homepage...
var static_image = 'image_main-home.jpg';
/*******************************************************************************/
/**END OF CONFIGURATION SECTION*************************************************/
/*******************************************************************************/

var program_counter = 1;
var img_dir = '';
var first_time = true;

$(document).ready(function(){
	if (rotator_on) {
		img_dir = $('#masthead_home').attr('src').toString();
		img_dir = img_dir.replace(static_image,'');

		setInterval("rotator()", image_speed*1000);
	}
});

function rotator() {

	$('#masthead_home').fadeOut(1000, function() {
		$('#masthead_home').attr('src',img_dir + image_directory+'/'+program_counter+'.'+image_type).fadeIn(1000);
	});

	if (program_counter == image_count) {
		program_counter = 1;
	} else {
		program_counter++;
	}
}
