function changeBanner(index, banners){
	$("#bannerList").append(
		'<div class="image_reel" style="width: 717px; display:none">\
			<img src="' + banners[index-1].path + '" />\
		</div>');
	$("#bannerList .image_reel:last").fadeIn(750);
	$("#bannerList .image_reel:first").fadeOut(500, function(){
		$(this).remove();
	});
	$("#bannerPaging a.active").removeClass("active");
	$("#bannerPaging a[rel='" + index + "']").addClass("active");
}

