/**
 * @author egrissom
 */

// secret: fe1d816d89bb2d01

jQuery(function(){   
  jQuery("#gallery").flickr({     
    api_key: "d5463c1a18dbd379fef0ea6e31100eae",
	type: "search",
	attr: '',
	thumb_size: 'm',
	user_id: "36248315@N04",
	 callback: easySlider   
  }); 
}); 


function easySlider(el) {
	$("#gallery").easySlider({
		prevText: '<< Prev.',
		nextText: 'Next >>',
		controlsBefore:	'<div id="controls">',
		controlsAfter:	'</div>',
		auto: false, 
		continuous: true
	});
}

$(document).ready(function(){
	$("#topReasonsList li").draggable({
		helper: 'clone',
		opacity: '0.35',
		cursor: 'move'
	});
    $("#topThreeReasons li").droppable({
		hoverClass: 'active',
		drop: function(ev, ui) { 
			$(this).html(ui.draggable.html());
			
			var topReasons = new Array();
			$("#topThreeReasons li").each(function() {
				topReasons.push($(this).text());	
			});
			$("#topReasons").val(topReasons);
		}
    });
	
	$("#slider").easySlider({
		prevText: '',
		nextText: '',
		prevId: "prevHero",
		nextId: "nextHero",
		pause: 5000,
		continuous: true
	});
  
  $("div.thumbs a").fancybox();
  $("div.hardwareGroup a").fancybox();
  $("ul.sidelitesContainer a").fancybox();
  $(".glassContainer a").fancybox();
  $('#galleryList a').fancybox();
  $('.patioHardware a').fancybox();
  $('ul.hardware a').fancybox();
  $('ul.construction a').fancybox();
  $('ul.showerGlass a').fancybox();
  $('ul.transomContainer a').fancybox();
  
/*   var rc = new RedScroll(); */
});


