$(document).ready(function (){

/* Homepage Slider
-----------------------------------------------*/
$('#amp_home_slides li:not(:first-child)').hide();
$('#amp_home_slides li:first-child').addClass('current');

$('#amp_home_slides').everyTime(7000,function(i) { // Set this number to any number of miliseconds you want.

	if($('#amp_home_slides .current').is(':last-child')) {

		$('#amp_home_slides .current').fadeOut(function() {
			$('#amp_home_slides .current').removeClass('current');
			$('#amp_home_slides li:first-child').fadeIn().addClass('current');
		});

	} else {

		$('#amp_home_slides .current').fadeOut(function() {
			$('#amp_home_slides .current').removeClass('current');
			$(this).next().fadeIn().addClass('current');
		});

	}

});

});
