$(document).ready(function () {
	$(".scroll").jCarouselLite({
		auto: 3000,
		visible: 1,
		speed: 600,
		btnNext: ".next",
		btnPrev: ".prev"
	});
});

function opendoor() {
	$('#door').animate({top: '-550px'}, 2000, function() {
		//closedoor();
	});
}

function closedoor() {
	$('#door').animate({top: '0px'}, 1000, function() {
		//closedoor();
	});
}
