// JavaScript Custom Scroller

$(document).ready(function(){
	
	$('#footer, p.callToAction, #home').localScroll({
	duration: 6000,
	easing:'easeOutExpo'
	});
	
	
	$("a.iframe").fancybox({
		'width'			: '85%',
		'height'		: '85%',
		'autoScale'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'type'			: 'iframe',
		//'titlePosition'	: 'over'
	});

	$("a.zoom").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
		'cyclic'     	: 'true',
		'padding'		: 2,
		'titlePosition' : 'over',
	});


	$("#foto a[rel=gallery1], #foto a[rel=gallery2], #foto a[rel=gallery3], #store a[rel=gallery1s], #store a[rel=gallery2s]").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
		'cyclic'     	: 'true',
		'padding'		: 2,
		'titlePosition' : 'over',
		'titleFormat'   : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over"><b>Foto</b> ' +  (currentIndex + 1) + ' di ' + currentArray.length + '</span>';
		    //return '<span id="fancybox-title-over">' + (title && title.length ? '<b>' + title + '</b><br />' : '' ) + ' Foto ' +  (currentIndex + 1) + ' di ' + currentArray.length + '</span>';
		}
	});

});
