
				var intRollingTime  = 5000;		// ½½¶óÀÌµå ½Ã°£
				var intRollingVert  = 10;		// ½½¶óÀÌµå °¹¼ö ÁöÁ¤
				var intThumbHeight  = 15;
				var slideVert;
				var objRoll;
				// js onload ÇÔ¼ö¿Í °°ÀÌ loding ½Ã Àû¿ëÇÒ ½ºÅ©¸³Æ®
				$jquery(document).ready(function() {
					slideVert		= $jquery("#divRollRank").children().length;
					intRollingVert	= ( intRollingVert > slideVert )? slideVert : intRollingVert;

					if(  intRollingVert > 1  ) fnRotate();
				});

				function fnRotate()
				{	
					objRoll = setInterval(fnUpRotate, intRollingTime);
				}

				function fnUpRotate()
				{
					// animate('½ÇÇàÇÒ °á°ú°ª','È¿°ú½Ã°£','linear/swing', 'animate Àû¿ëÈÄ ½ÇÇàÇÒ ÇÔ¼ö')
					$jquery($jquery("#divRollRank").children()[0]).animate({ opacity: 0 }, 1000, "swing", function() {

						$jquery($jquery("#divRollRank").children()[0]).animate({ marginTop: -intThumbHeight }, 1000, "swing", function() {

							$jquery($jquery("#divRollRank").children()[0]).css("margin", 0);

							$jquery("#divRollRank").append($jquery($jquery("#divRollRank").children()[0]));

							$jquery($jquery("#divRollRank").children()[intRollingVert - 1]).animate({ opacity: 1 }, 1000, "swing");
						});
					});
				}