	//----------------------
	//¿ÞÂÊ ÀÌµ¿½Ã ÀÌ¹ÌÁö¸¦ »ý¼ºÇÑ´Ù -> ¿ÞÂÊÀÌµ¿½Ã f_current ¸¦ Áõ°¡ÇÑ´Ù , ¿À¸¥ÂÊ ÀÌµ¿½Ã´Â f_current °¨¼ÒÇÑ´Ù
	function div_create(){
		var img_init = "";
		var temp_current = 0;
		for(var i=0 ; i < f_count ; i++){
			if(f_direct){
				img_init = img_arr[f_current]+img_init;		//ÀÌ¹ÌÁö¸¦ µÚÂÊÀ¸·Î ³Ö´Â´Ù
				f_current--;
				if(f_current<0){f_current=img_count-1;}
			}
			else{
				f_current = f_current % img_count ;
				img_init += img_arr[f_current];			//ÀÌ¹ÌÁö¸¦ ¾ÕÂÊÀ» ³Ö´Â´Ù
				f_current++;
			}
		}
		temp_current = f_current;
		
		//2ÁÙ·Î ¸¸µç´Ù
		for(i=0 ; i < f_count ; i++){
			if(f_direct){
				img_init = img_arr[temp_current]+img_init;
				temp_current--;
				if(temp_current<0){temp_current=img_count-1;}
			}
			else{
				temp_current = temp_current % img_count ;
				img_init += img_arr[temp_current];
				temp_current++;
			}
		}
		return img_init ;
	}
	//---------------------------
	
	
	//---------------------------
	
	//ÀÌµ¿À» Á¤ÀÇ
	var move_current = 0;				//ÇöÀç ÀÌµ¿ div
	var current_move = "move00";			//Ã³À½ ÀÌ¹ÌÁö div
	var view_move = "move01";			//º¸¿©ÁÖ´Â ÀÌ¹ÌÁö div
	var temp_move = "";				//º¯¼ö div
	
	function move_ani()
	{
	
		//À§Ä¡ º¯°æ½Ã ÀÌ¹ÌÁö ¼ö¸¦ º¯°æÇÑ´Ù  
		if(f_old_direct != f_direct)
		{
			//³»¿ëÀÌ º¯°æ µÇ¾ú´Ù 
			move_current = f_count - move_current;
			f_old_direct = f_direct;
		}
		if(move_current == f_count)
		{	
			if(f_direct){
				jQuery("#"+view_move).empty().append(div_create()).css({"left":"-"+move_width+"px" , "z-index":"90" ,"display":"block"});
			}
			else{
				jQuery("#"+view_move).empty().append(div_create()).css({"left":"0" , "z-index":"90" ,"display":"block"});
			}
			
			jQuery("#"+view_move).prependTo("#flow_con").css("z-index","100");
			jQuery("#"+current_move).css("display","none");
			temp_move = current_move;
			current_move = view_move;
			view_move = temp_move;
			move_current = 0;
		}
		move_current++;
	

		if(f_direct){
			jQuery("#"+current_move).animate({left:"+="+roll_width},{duration:f_time});
		}
		else{
			jQuery("#"+current_move).animate({left:"-="+roll_width},{duration:f_time});
		}
		
	}

	var move_id = "";
	//ÀÌ¹ÌÁö¸¦ ½ÃÀÛÇÑ´Ù
	jQuery(document).ready(function(){
		jQuery("#flow_con").mouseover(function(){move_stop();});
		jQuery("#flow_con").mouseout(function(){move_go();});
		jQuery("#flow_con").append("<div id='move00' class='move_div'>"+div_create()+"</div>");
		if(f_direct){
			jQuery("#flow_con #move00").css("left","-"+move_width+"px");
		}
		else{
			jQuery("#flow_con #move00").css("left","0");
		}
		jQuery("#flow_con").append("<div id='move01' class='move_div' style='display:none'></div>");
		move_id =setInterval(move_ani,f_time_term);
	});

	//---------------------------
	
	
	//¹«ºñ ½ºÅ¾ / ½ÃÀÛ 
	function move_stop()
	{
		clearInterval(move_id);
	}
	
	function move_go()
	{
		move_id =setInterval(move_ani,f_time_term);
	}
	
	
	//È­»ìÇ¥ ÄÁÆ®·Ñ
	function arrow_over(type)
	{	
		//--------------------------------
		//±âÁØÁ¡À» º¯°æ
		if(type){
			if(f_direct==0){
				//¸¸¾à ¿ÞÂÊÀ¸·Î Èå¸£°í ÀÖ¾ú´Ù¸é ±âÁØ°ªÀ» ÇÑÄ­ µÚ·Î
				f_current--;
				if(f_current<0){f_current=img_count-1;}
			}
			f_direct=1;
		}
		else{
			if(f_direct==1){
				f_current++;	
			}
			f_direct = 0 ; 
		}
		//------------------------------
		

		f_old_time=f_time ;  
		f_old_time_term=f_time_term ;
		f_time = f_arrow_time ; 
		f_time_term = f_arrow_time;
		easeType_old = jQuery.easing.def;
		jQuery.easing.def = 'linear';
		clearInterval(move_id);
		move_id =setInterval(move_ani,f_time_term);
	}

	function arrow_out()
	{
		if(f_arrow_after){ //ÇÑ¹æÇâÀ¸·Î Èå¸¥´Ù
			if(f_direct!=f_old_fix)
			{
				if(f_direct==0)
				{
					//¸¸¾à ¿ÞÂÊÀ¸·Î Èå¸£°í ÀÖ¾ú´Ù¸é ±âÁØ°ªÀ» ÇÑÄ­ µÚ·Î
					f_current--;
					if(f_current<0){f_current=img_count-1;}
				}
				else{
					f_current++;
				}
			}
			f_direct = f_old_fix;
		}
		
		
		//------------------------------
		//ÀÌÀü ³»¿ëÀ» Á¤ÀÇÇÑ´Ù
		jQuery.easing.def = easeType_old;
		f_time=f_old_time ;  
		f_time_term=f_old_time_term ;
		clearInterval(move_id);
		move_id =setInterval(move_ani,f_time_term);
	}
