// scripting for the rotators on the home page
$.scriptPath = "js/";
// Required Plugins
jQuery.require("jquery-rotator.js");

$(document).ready(function()
	{
		// Rotate images on the home page
		$('#rotator').innerfade( // main panoramic
			{speed: 'slow',	timeout: 9000, type: 'sequence', containerheight: '245px'}
		);
		$('#rotatorTL').innerfade( // Top Left
			{speed: 'slow',	timeout: 5000,type: 'sequence',	containerheight: '289px'}
		);
		$('#rotatorTR').innerfade( // Top Right
			{speed: 'slow',	timeout: 5000,	type: 'random',	containerheight: '289px'}
		);
		$('#rotatorBL').innerfade( // Bottom Left
			{speed: 'slow',	timeout: 5000,	type: 'sequence',containerheight: '289px'}
		);
		$('#rotatorBR').innerfade( // Bottom Right
			{speed: 'slow',	timeout: 5000,	type: 'random',	containerheight: '289px'}
		);
	}

);        

