// jQuery$(document).ready(function(){    	$('#slide_show img:gt(0)').hide();    	setInterval(function(){      	  $('#slide_show :first-child').fadeOut()         		 .next('img').fadeIn()         .		 end().appendTo('#slide_show');},       	  4000);});
