window.onload = load;
window.onresize = resize;

function load()
{
	$(document).ready(function(){
	$('.ui-tabs-handles li a').click(function(){
		$('body').scrollTo(  '#calendar_holder', 500 );
	});

	$("div.arrow_next").click(function () { 
		$(this).parent().children(".days_holder").animate({scrollLeft: $(this).parent().children(".days_holder").scrollLeft()+66}, 500);
	});

	$("div.arrow_back").click(function () { 
		$(this).parent().children(".days_holder").animate({scrollLeft: $(this).parent().children(".days_holder").scrollLeft()-66}, 500);
	});

	$("ul.days").css('width', $(this).children().size()*66+"px");

	resize();
	});	
}

function resize()
{
	$(document).ready(function(){

		if ($(window).height()>780)
		{
			$("#css-gallery").css('height',$(window).height()+'px');		
		} else {
			$("#css-gallery").css('height',780+'px');		
		}
	});	
}
