$(document).ready(function(){

	$('#basicuse').jflickrfeed({
		limit: 14,
		qstrings: {
			id: '37304598@N02'
		},
		itemTemplate: '<li><a href="{{image_b}}"><img src="{{image_s}}" alt="{{title}}" /></a></li>'
	});

	$('#cbox').jflickrfeed({
		limit: 14,
		qstrings: {
			id: '37304598@N02'
		},
		itemTemplate: '<li>'+
						'<a rel="colorbox" href="{{image}}" title="{{title}}">' +
							'<img src="{{image_s}}" alt="{{title}}" />' +
						'</a>' +
					  '</li>'
	}, function(data) {
		$('#cbox a').colorbox();
	});


/*fader for front page pulling from Home Set of the studio flickr page*/

	$('#cycle').jflickrfeed({
		limit: 14,
		qstrings: {
			set: '72157626638351717', nsid: '61787276@N04'
		},
		itemTemplate: '<li><img height="410" width="960" 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();
		});
	});


	var l = location.href;
	var flickrSet = '';
	/*last number in url when you go to the set page.... sets/xxxxxxxxxxx    not studio acct*/

	if (l.indexOf('building-5-diner-roof') >0) {
		flickrSet = '72157625766447857';
	}

	if (l.indexOf('hospital-hallway') >0) {
		flickrSet = '72157625766334583';
	}

/*Fader for menu bar pulling from main photostream of the public flickr page*/
	$('#flickrMenu').jflickrfeed({
		limit: 14,
		qstrings: {
			set: flickrSet, nsid: '58685979@N04'
		},
		itemTemplate: '<li><a href="{{image_b}}"><img height="180" width="180" src="{{image}}" alt="{{title}}" /><div>{{title}}</div></a></li>'
	}, function(data) {
		$('#flickrMenu div').hide();
		$('#flickrMenu').cycle({
			timeout: 5000
		});
		$('#flickrMenu li').hover(function(){
			$(this).children('div').show();
		},function(){
			$(this).children('div').hide();
		});
	});

	$('#nocallback').jflickrfeed({
		limit: 4,
		qstrings: {
			id: '37304598@N02'
		},
		useTemplate: false,
		itemCallback: function(item){
			$(this).append("<li><img src='" + item.image_m + "' alt=''/></li>");
		}
	});

});
