			$(document).ready(function(){
			$('#photos').galleryView({
			    panel_width: 729,
			    panel_height: 280,
			    transition_speed: 2000,
			    transition_interval: 4000,
			    nav_theme: 'none',
			    border: '1px solid white',
			    pause_on_hover: false
			});
			
			$("#social a").fadeTo(0, .4);
			
			$(".wed-feature ul").fadeTo(0, 0);
			$(".wed-feature").hover(function () {
				$(this).find("ul").fadeTo(300, 1);
				$(this).find("img").fadeTo(300, .1);
				
			}, function () {
			    $(this).find("ul").fadeTo(150, 0);
				$(this).find("img").fadeTo(300, 1);			    
			  });
		});

