$(document).ready(function(){
	setInterval(Slide, 5000);
	function Slide(){
		if($('#imagelist').css('marginLeft').replace('px', '') < -2000){
			$('#imagelist').animate({marginLeft : '0'}, 1000)
		}else{
			$('#imagelist').animate({marginLeft : '-=700'}, 1000)
		}
	}
	$('#topclose').click(function(){$('#splashshadow').css({display: 'none'}); $('#splash').css({display: 'none'});return false})
	$('#bottomclose').click(function(){$('#splashshadow').css({display: 'none'}); $('#splash').css({display: 'none'});return false})
});
