$(function(){
	
	function setHeight(){
		var wheight = $(window).height();
		var newheight = Math.max( 250, (wheight - 263) - 20 );
		
		$("html,body").scrollTop(0);
		$('.scroll_container').css('height', newheight+'px');
		$('.scroll_scroller').css('height', (newheight-20)+'px');
	}
	
	
	$(".scroll_container").css('opacity', 0.65);
	
	if($(".wide_scroller").length > 0){
		$(".scroll_container").css('width', '840px');
	}
	
	setHeight();
	$(window).resize(setHeight);
});


