$(document).ready(function() {

	$('#Cycle .slideshow')
		.after('<div id="nav">')
		.cycle({ 
			fx:         'scrollVert',
			speed:      500,
			timeout:	13000,
			pager: 	  '#nav',
			cleartype:  1//,
			//easing:     'backinout'
		});

		var countDiv = $("#Cycle #nav > a").size();
			for(index=0; index< countDiv ; index++)
			{
				$('#Cycle #nav a:nth('+index+')').addClass("item_"+ index +"");
				
			}
});
