$(document).ready(function(){
				var scrollHandleWidthInt = 62;
				var IntContentWidth = 4;
				var IntContentHeight = 3;
				var contentratio = IntContentWidth/IntContentHeight;
				
				$(window).resize(function(){
			  		windowHeight = $(window).height();
			  		windowWidth = $(window).width();
			   		windowratioHeight = windowHeight/IntContentHeight;
			   		windowratioWidth = windowWidth/IntContentWidth;
			   		
					if ((windowWidth/windowHeight) > contentratio) {
						$('#bgimage').css({'width': IntContentWidth*windowratioWidth});
						$('#bgimage').css({'height': $('#bgimage').width()/contentratio});
						$('#bgimage img').css({'width': $('#bgimage').width(),'height': $('#bgimage').height()});
					} else {
						$('#bgimage').css({'height': IntContentHeight*windowratioHeight});
						$('#bgimage').css({'width': $('#bgimage').height()*contentratio});
						$('#bgimage img').css({'width': $('#bgimage').width(),'height': $('#bgimage').height()});
					}
			  	});
			  	$(window).resize();
			  	$('#bgimage').append('<div id="glass"></div>');
			    
			    
			});