	$(document).ready(function() {
		splashScroller();	
	});
	$(window).resize(function() {
		splashScroller();
	});
	$(window).scroll(function() {
		splashScroller();
	});
	function splashScroller() {
		var docWidth = $(document).width();
		var winWidth = $(window).width();
		if(docWidth <= 1025) {
			$('html').css('overflow-x','scroll');
			$('#myFlashBackground, #wideBar').css('width',docWidth);
		} else {
			$('html').css('overflow-x','hidden');
			$('#myFlashBackground, #wideBar').css('width',winWidth);			
		}
	}
