(function ($) { //makes jQuery play nice
$(document).ready(function() {
	
	function banneranimate(){
		$("#BannerPics .sizer img:first").remove().appendTo("#BannerPics .sizer");
		$("#BannerPics .sizer").css("left",0);
		var firstpic = $("#BannerPics .sizer img:first")
		$("#BannerPics .sizer").animate({
			left: "-"+firstpic.width()+"px"
		},firstpic.width()*20,"linear",function(){
			banneranimate();
		});
	}
	
	banneranimate();
	

})
})(jQuery);
