﻿//home page javascripts
$(document).ready(function() {
	
	//display the image rotator div since we clearly have javascript enabled.
    $('#image-rotator').css('display', 'block');

    $('#image-rotator').cycle({
    	fx: 'fade',
    	speed: 3000,
		timeout:10000
    });
	
});

