	polly_jQuery.scrollTo.defaults.axis = 'xy';


	// onload
	polly_jQuery(document).ready(function () {
		polly_jQuery('body').addClass('js');
		var numberOfBanners = 0;
		polly_jQuery('#tjanster-box .info').each(function(i){
			numberOfBanners++;
		});
		polly_jQuery('#tjanster-box .info').each(function(i){
			polly_jQuery(this).children("a.left").click(function(event){
				if(i==0) {
					polly_jQuery('.bannerContainer').scrollTo( polly_jQuery('#info'+numberOfBanners), 400 );
				}
				else {
					polly_jQuery('.bannerContainer').scrollTo( polly_jQuery('#info'+i), 400 );
				}
				event.preventDefault();
			});
			polly_jQuery(this).children("a.right").click(function(event){
				if((i+1)==numberOfBanners) {
					polly_jQuery('.bannerContainer').scrollTo( polly_jQuery('#info1'), 400 );
				}
				else {
					polly_jQuery('.bannerContainer').scrollTo( polly_jQuery('#info'+(i+2)), 400 );
				}
				event.preventDefault();
			});
		});

		
	});


