$(document).ready(function(){


	
	$('#cycle').jflickrfeed({
		limit: 20,
		qstrings: {
		set:'72157624904226844',
		nsid: '52036673@N03'
		},
		itemTemplate: '<li><a href="{{link}}"><img src="{{image}}" alt="{{title}}" /></a><div>{{title}}</div></li>'
	}, function(data) {
		$('#cycle div').hide();
		$('#cycle').cycle({
			timeout: 5000,
			fx:     'fade',
  			speed:    '1000',
    		timeout:  0,
    		next:   '#next',
    		prev:   '#prev'
		});
		
		//$('#cycle li').hover(function(){
		//	$(this).children('div').show();
		//},function(){
		//	$(this).children('div').hide();
		//});
	});
	
	
	

});
