//jQuery slide show function//

$(document).ready(function(){
	$(function(){
	    $('.slideShow img:gt(0)').hide();
	    setInterval(function(){
	      $('.slideShow :first-child').fadeOut('slow')
	         .next('img').fadeIn('slow')
	         .end().appendTo('.slideShow');}, 
	      5000);
	});
});

