/*	CarouFredSel: an infinite, circular jQuery carousel.
	Configuration created by the "Configuration Robot"
	at caroufredsel.frebsite.nl
*/
$j(document).ready(function()
{

$j("#blog .items").carouFredSel({
	width: 920,
	items: {
		visible: 2,
		width: 480
	},
	scroll: {
		items: 1,
		duration: 800
	},
	auto: false,
	prev: {
		button: "#prev",
		key: "left"
	},
	next: {
		button: "#next",
		key: "right"
	}
});

$j('#slider')
	.anythingSlider({
		width               : 670,
		startStopped        : true,
		resizeContents      : false,
		navigationFormatter : function(i, panel){
			return ['deNotarissen', 'Waarom wij?', 'Het team', 'Historie', 'Vacatures'][i - 1];
		}
	})



	$j('#googlemapsslider')
		.anythingSlider({
		width               : 670,
		startStopped        : true,
		resizeContents      : false,
		navigationFormatter : function(i, panel){
			return ['Gorinchem', 'Meerkerk', 'Vianen'][i - 1];
		}
	});
	
	if( window.location.hash.substring(0,5) == '#panel' )
	{
		window.location.hash = '#googlemapsslider';
	}
});

