$(function()
{
	/* -----------------------------
	 * Slide
	 * ----------------------------- */
	var total = 0;
	var num = 0;
	var backnum = 0;
	
	$('.slideImg', this.group).each(function(){
		$(this).hide();
		$(this).css({"z-index": "0"});
		total++;
	}).filter(':eq(0)').css({"z-index": "1"}).fadeIn("2000");
	
	if(total > 1){
		setInterval(newsF,6000);
	}
	
	function newsF(){
	
		if( num < (total - 1)){
			num++;
		} else {
			num = 0;
		}
		
		if(num == 0){
			backnum = (total-1);
			
		} else {
			backnum = (num-1);
		}
		
		$('.slideImg', this.group).filter(':eq('+backnum+')').css({"z-index": "1"});
		$('.slideImg', this.group).filter(':eq('+num+')').css({"z-index": "0"});
		
		
		$('.slideImg', this.group).each(function(){
			//$(this).hide();
		}).filter(':eq('+num+')').fadeIn(2000, function(){
			$('.slideImg', this.group).filter(':eq('+backnum+')').fadeOut(2000);
		});
	}
	
	/* -----------------------------
	 * Pagetop
	 * ----------------------------- */
	
	$.com(".scroll").PageScroll({speed:800, easing:"easeOutQuint"});
	
});
