$(document).ready(function()
{
	setTimeout(function()
	{
		var wrapper_size = $('#main-wrapper').height();

		$('body').height(wrapper_size);
		
	}, 50);
	
	var height = $(window).height();
	
	$('#animated-background').css('height',height+'px');
	//$('#main-wrapper').css('height',height+'px');
	
	$(window).resize(function(){
		height = $(window).height();

		$('#animated-background').css('height',height +'px');
		//$('body#gallery').css('height',height +'px');
		$('body#index').css('height',height +'px');
		
	});	

		
	// replace select boxes

	$([
	'.package_select_season',
	'.package_select_accomodation',
	].join(', ')).selectbox({
		animationSpeed: 'fast'
	});

});



