
$(document).ready(function(){
$('#par-photoalbum')
	.anythingSlider({
		width               : 550,
		height              : 400,
		toggleControls : false,
		startStopped        : false,
		buildArrows         : false,
		buildNavigation     : false,
		navigationFormatter : null
		//navigationFormatter : function(i, panel){
		//	return ['Top', 'Right', 'Bottom', 'Left'][i - 1];
		//}
	})
	.anythingSliderFx({
		'.caption-top'    : [ 'caption-Top', '50px' ],
		'.caption-right'  : [ 'caption-Right', '130px', '1000', 'easeOutBounce' ],
		'.caption-bottom' : [ 'caption-Bottom', '50px' ],
		'.caption-left'   : [ 'caption-Left', '330px' , '1000']
	})
	.find('div[class*=caption]')
		.css({ position: 'absolute' })
		;
});
