$(function() {
/* Move to homepage.js */

	//$('#header p').fadeIn(1500);

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

});
