	window.onresize=size;
	$(document).ready(function(){

		var screenWidth = $("body").width();
		var screenHeight = $("html").height();

		if(screenHeight <= 700){
			$(".scrollable").css({
				width: screenWidth,
				height: screenHeight,
			});
		}else{
			$(".scrollable").css({
				width: screenWidth,
				height: screenHeight,	
			});
		}
		
		
	});
	
	function size(){
		var screenWidth = $("body").width();
		var screenHeight = $("html").height();
   
		if(screenHeight <= 700){
			$(".scrollable").css({
				width: screenWidth,
				height: screenHeight,
			})
		}else{		
			$(".scrollable").css({
				width: screenWidth,
				height: screenHeight,
			});
		}
	       
		
	
	}
