// JavaScript Document
$(function()
{
 
 if ($('#s1'))
  $('#s1').cycle({ 
    fx: 'fade' 
});
  if ($('#s4'))
  $('#s4').cycle({ 
    fx: 'fade' 
});

if ($('#news-ticker'))
 $('#news-ticker').serialScroll({
				items:'div',
				duration:700,
				force:true,
				axis:'y',
				lazy:false,//NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.
				interval:8000, //yeah! I now added auto-scrolling
				step:1 //scroll 2 news each time
			});	


if ($('#news-ticker1'))

 $('#news-ticker1').serialScroll({
				items:'div',
				duration:700,
				force:true,
				axis:'y',
				lazy:false,//NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.
				interval:8000, //yeah! I now added auto-scrolling
				step:1 //scroll 2 news each time
			});	
if ($('#news-ticker3'))

 $('#news-ticker3').serialScroll({
				items:'div',
				duration:700,
				force:true,
				axis:'y',
				lazy:false,//NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.
				interval:8000, //yeah! I now added auto-scrolling
				step:1 //scroll 2 news each time
			});	

});


