$(document).ready(function(){
	$('#scroll').cycle({
    fx:'scrollUp',
    timeout:2500,
    delay:-100
});
});


  
  function   get10Length(str)   
  { 
  //alert(str);
 	var	n=20;
  if(str.length   <=   n)     
  {   
  document.write(str.substring(0,str.length - 1 ));
  }  
  if(str.length   >   n)   
  {   
  document.write(str.substring(0,n - 1)   +   "...");   
  }     
  }       
