$(document).ready(function() {
    $('.albums').tn3({
    	autoplay: true,
    	delay: 8000,
    	startWithAlbums: true,	
        mouseWheel: false,
		image:{
			transitions:[{
			    type: "slide",
    			easing: "easeInOutCirc",
    			direction: "auto",
    			duration: 300
			}]
		},
    	external:[
    	{
    	origin:"flickr",
    	api_key:"bb7c2821ff29e6dc785ff0339fcad58d",
    	user_id:"66113582@N03",
    	// 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"
    	}
    	]
    });
});



