 $(document).ready(function(){
 
    isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	fixscratch();
   
		function fixscratch() {
			$("#scratchcontainer").css("display","block");
			$("#scratchcontainer").css("width",$(window).width());
			$("#scratchcontainer").css("height",$(window).height());
		}
   
		$(window).resize(function() {		
			fixscratch();
		});
		
		/*
		if (isIE6) {
		
			$(window).scroll(function() {	
				$("#scratchcontainer").css("top", $(window).scrollTop() + "px"); 
				
			});
		
		}
		*/
 });