$(document).ready(function()
{
    $('.gallery-with-effects').each(function(index,gallery)
    {
	$(gallery).crossSlide(
	{
	    fade: 1,
	    variant: true,
	    easing: 'easeInOutQuad'
	},
	[
	    {
		src:  app_url+'/images/gallery/1.jpg',
		alt:  '',
		from: '10% 40% 1.9x',
		to:   '18% 45% 1x',
		time: 3
	    },
	    {
		src:  app_url+'/images/gallery/2.jpg',
		alt:  '',
		from: '18% 45% 1x',
		to:   '60% 13% 1.8x',
		time: 3
	    },
	    {
		src:  app_url+'/images/gallery/3.jpg',
		alt:  '',
		from: '18% 45% 1.7x',
		to:   '3% 2% 1x',
		time: 3
	    }
	]);
    });    
})
