$(document).ready(function(){	
	$("#slider").easySlider({
		controlsBefore: '<p id="controls">',
		controlsAfter: '</p>',
		auto: true, 
		continuous: true,
		prevText: '<',
		nextText: '>'
	});
	$('#cbox').jflickrfeed({
		limit: 10,
		qstrings: {
			id: '48186650@N03'
		},
		itemTemplate:
		'<li>' +
			'<a rel="colorbox" href="{{image}}" title="{{title}}">' +
				'<img src="{{image_s}}" alt="{{title}}" />' +
			'</a>' +
		'</li>'
	}, function(data) {
		$('#cbox a').colorbox();
	});
	$('#colorchart a').colorbox();
	$('#cycle').jflickrfeed({
		limit: 14,
		qstrings: {
			id: '48186650@N03'
		},
		itemTemplate: '<li><img src="{{image}}" alt="{{title}}" /><div>{{title}}</div></li>'
	}, function(data) {
		$('#cycle div').hide();
		$('#cycle').cycle({
			timeout: 5000
		});
		$('#cycle li').hover(function(){
			$(this).children('div').show();
		},function(){
			$(this).children('div').hide();
		});
	});
});

