$(document).ready(function () {
	$('.lightbox a').fancybox();

	$(".project-list .email").fancybox({
		'width'				: '400px',
		'height'			: '300px',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});


$(window).scroll(function (event) {
    // what the y position of the scroll is
    var y = $(this).scrollLeft();
    if (y > 0) {
        $('#left').addClass('normal');
    } else {
        $('#left').removeClass('normal');
    }
});

