jQuery(function( $ ){
	//alert ("scroll");
	/*Scroll for fastival.*/
$('#slideshow_festival').serialScroll({
 items:'li',
 prev:'#nav_up_festival',
 next:'#nav_down_festival',
 start:1, //as we are centering it, start at the 2nd
 duration:1000,
 force:true,
 stop:true,
 lock:false,
 axis:'y',
 step:4,
 cycle:false, //don't pull back once you reach the end
  jump: true //click on the images to scroll to them
 });
 
 
 /*Scroll for media.*/
$('#slideshow_media').serialScroll({
 items:'img',
 prev:'#nav_up_media',
 next:'#nav_down_media',
start:1, //as we are centering it, start at the 2nd
 duration:1000,
 force:true,
 stop:true,
 lock:false,
 //offset:-500,
 axis:'y',
 step:4,
 cycle:false, //don't pull back once you reach the end 
 jump: true //click on the images to scroll to them
 });
 
  /*Scroll for news.*/
$('#slideshow_news').serialScroll({
 items:'img',
 prev:'#nav_up_news',
 next:'#nav_down_news',
start:1, //as we are centering it, start at the 2nd
 duration:1000,
 force:true,
 stop:true,
 lock:false, 
 axis:'y',
 step:4,
 cycle:false, //don't pull back once you reach the end 
 jump: true //click on the images to scroll to them
 });
 
 
  /*Scroll for header- topbanner .*/
$('#slideshow_header').serialScroll({
 items:'img',
 prev:'#nav_up_header',
 next:'#nav_down_header',
start:1, //as we are centering it, start at the 2nd
 duration:1000,
 force:true,
 stop:true,
 lock:false, 
 axis:'y',
 step:2,
 cycle:false, //don't pull back once you reach the end 
 jump: true //click on the images to scroll to them
 });

});
