/**
 * 
 */


$(document).ready(function() {
	if (document.getElementById('donotscroll')) {
		return false;
	}
		$('#homeScroller').scroller({
					direction:       'horizontal',
					duration:        2000,
					scrollId:        'scrollPane',
					backButtonId:    'backButton',
					nextButtonId:    'nextButton',
					auto:            'true',
					autoBuffer:      5000,
					stopAutoOnClick: 'true',
					resetOnEnd:      'true'
		});
});

function animateSite()
{
	$('#rightsider').fadeIn(1500, function() {
		$('#logo, #photoselector, #sublogo').fadeIn(1300, function() {
			$('#contentholder').slideDown(2000, 'easeOutQuart', function() {
				$('#contentfooter').slideDown(2000, 'easeOutQuart', function() {
					$('#imageLabel').fadeIn(3000);
				});
			});
		});
	});
}

function showMenuBox()
{
	setTimeout(function() {
		$('#kalkbordHolder, #contentfooter').slideDown(2000, 'easeOutQuart', function() {
			$('#imageLabel').fadeIn(3000);
		});
	}, 1000);
}
