	jQuery(function($) {
		
		/* top images */
		
		$('#changingimages img').hide().eq(0).addClass('show').show();
		
		if($('#changingimages img').length > 1) {
		
			window.setInterval(function () {
				var thisi = $('#changingimages img.show');
				var nexti = thisi.next('img');
				if(nexti.length == 0) nexti = $('#changingimages img:first');
				thisi.removeClass('show').stop().fadeOut(1000);
				nexti.addClass('show').stop().fadeIn(1000);
			},7000);
			
		} 
	});
