function date_set(){

   $.ajax({url: "/setting/timer-set.html",cache: false,success: function(html){
	
		var mydate = html.split(',');
		
		y = eval(mydate[0]);
		m = eval(mydate[1]);
		d = eval(mydate[2]);			
	
		today = new Date();
		xday = new Date(y,m-1,d);
		d = Math.floor((xday.getTime()-today.getTime())/86400000)+1;	
		
		if( d < 0){d=0;}
		
		c=""+d;	
		
		temp="";
		for(var i=0;i<c.length;i++){
		temp+="<img src=\"/images/num/"+c.charAt(i)+".gif\" alt="+c.charAt(i)+" class=\"c\" />";
		}
		
		if(c.length==2){
			temp="<img src=\"/images/num/0.gif\" alt=\"0\" />"+temp+"<img src=\"/images/right_count_day.gif\" alt=\"“ú\" />";
		}else if(c.length==1){
			temp="<img src=\"/images/num/0.gif\" alt=\"0\" /><img src=\"/images/num/0.gif\" alt=\"0\" />"+temp+"<img src=\"/images/right_count_day.gif\" alt=\"“ú\" />";
		}else{
			temp+="<img src=\"/images/right_count_day.gif\" alt=\"“ú\" />";
		}
		
		$("#count").append(temp);
		$("#count img").css({"margin-right":"5px"})
	
	}});

}
