$(document).ready(function() {
			$('#example1').bxSlider({
			    mode: 'slide',
			    speed: 250,
			    wrapper_class: 'example1_container'
			});
		
		
			$('#example3').bxSlider({
				mode: 'fade',
				speed: 1000,
				pause: 5000,
				auto: true,
				controls: false,
				auto_direction: 'right',
				/*next_text: 'next image',
				prev_text: 'previous image',*/
				width: 820,
				wrapper_class: 'example3_container'
			});
			
		});
		
		
		$().ready(function() {
			$('#coda-slider-1').codaSlider();
		});
$(document).ready(function(){
	$(".photo-list a").hover(function(){
		$(this).children("span").fadeOut();
	}, function(){
		$(this).children("span").fadeIn();
	})		
	return false;
});

