$(document).ready(function() {
    $('.maisongallery').tn3({
    	autoplay: false,
    	delay:8000,
    	startWithAlbums: true,	
        mouseWheel: false,
		image:{
			transitions:[{
			    type: "slide",
    			easing: "easeInOutCirc",
    			direction: "auto",
    			duration: 300
			}]
		},        	
    	external:[
    	{
    	origin:"flickr",
    	api_key:"b92ea124879d467f2099f8cfe91acaa5",
    	user_id:"64907851@N05",
    	// sets, galleries, favorites, interestingness, photostream, search
    	source: "sets",
    	// photos specific request parameters - see flickr api
    	photos: {
    	extras:"description",
    	page:1,
    	per_page:100
    	},
    	// album specific request parameters - see flickr api
    	albums:{},
    	// object with title, thumb, description properties
   		 albumInfo:{},
    	thumbSize: "s",
    	imageSize: "z"
    	}
    	]
    });
});



