$(document).ready(function() {
var width = 0;
$('.photo').each(function() {
    width += $(this).outerWidth( true );
});
$('body').css('width', width + 750);
});

$(document).ready(function () {
    $('#linkback').localScroll({
		target:'body',
		duration:1000,
		easing:'easeInOutCubic',
		axis:'x',
		offset:-60,
		hash:false
	});
	$('#photos').localScroll({
		target:'body',
		duration:800,
		easing:'easeInOutCubic',
		axis:'x',
		offset:-80,
		hash:false
	});
});

setTimeout(function(){
	$('#lights').fadeOut(2500);
	}, 5000);
	
$(function() {
	$('#galleries a')
		.mouseover(function (){
			$(this).stop().animate(
				{ paddingLeft: '6px'},
				{ queue:false, duration:300 })
		})
		.mouseout(function () {
			$(this).stop().animate(
				{ paddingLeft: '0px'},
				{ queue:false, duration:100 })
		})
});