jQuery(function(){
	/*======================================*/
	/* Homepage Image Rotation */
	/*======================================*/
	jQuery('#main_image2, #main_image3').hide();
	function rotateHomeImages() {
		jQuery.timer(4000, function (timer) {
			jQuery('#main_image2').show();
			jQuery('#main_image1').fadeOut(1000);
			timer.stop();
			jQuery.timer(4000, function (timer) {
				jQuery('#main_image3').show();
				jQuery('#main_image2').fadeOut(1000);
				timer.stop();
				jQuery.timer(4000, function (timer) {
					jQuery('#main_image1').fadeIn(1000, rotateHomeImages);
					timer.stop();
				});
			});
		});
	}
	rotateHomeImages();
});
