document.documentElement.className += 'js1';
$(function() {
 $('.fadein1 :first-child').appendTo('.fadein1').show();
 setInterval(
	function() {
		$('.fadein1 :first-child').hide().appendTo('.fadein1').fadeIn(2000);
	 }, 5000);
 
});


document.documentElement.className += 'js1';
$(function() {

 $('.slideshow_3d :first-child').appendTo('.slideshow_3d').show();
 setInterval(
	function() {
		$('.slideshow_3d :first-child').hide().appendTo('.slideshow_3d').fadeIn(1000);
	 }, 3000);
 });
