$(function()
{
	$("div#flashObject").carousel(
	{
		direction: "vertical", // you can change this to horizontal/vertical
		effect: "fade",
		animSpeed: "slow",
		loop: true,
		pagination: true, // setting this to true adds the pagination 1, 2, 3 etc.
		autoSlide: true, // automatic rotation between the banners
		autoSlideInterval: 3000, // how long in miliseconds till next rotation
		delayAutoSlide: 1000, // how long to pause on each banner
		easing: "easeInOutQuad"
	});
	
	$('div#newsBanner ul').cycle(
	{
		fx:      'scrollUp',
		easing:  'easeinout', 
		speed:   420, 
		timeout: 4500,
		pause:   1, 
		sync: true
	});
});
