// JavaScript Document
	function MM_preloadImages() { //v3.0
		var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
			var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
			if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
	}


/*function sizeBox() {
	
	var w = $(window).width();
	var h = $(window).height();
	$('#main_container').css('position', 'absolute');
		if (document.documentElement.clientHeight > 680) {
	$('#main_container').css('top', h/2-($('#main_container').height()/2));
	}
	$('#main_container').css('left', w/2-($('#main_container').width()/2));
	
	
}

$(document).ready(function() {
	sizeBox();
});

$(window).resize(function() {
	sizeBox();
});*/
/*
function sizeBox() {
			var w = $(window).width();
			var h = $(window).height();
			$('#content_box').css('position', 'absolute');
			if (window.innerHeight) {
				theHeight=window.innerHeight;
			} else if (document.documentElement.clientHeight) {
				theHeight=document.documentElement.clientHeight;
			} else if (document.body) {
				theHeight=document.body.clientHeight;
			}
			if (theHeight > 680) {
				$('#content_box').css('top', h/2-($('#content_box').height()/2));
			}
			$('#content_box').css('left', w/2-($('#content_box').width()/2));
			
		}
 

		function sizePage() {
			sizeBox();
			bod = document.getElementById("content_box");
			bod.style.display="block";
			init_scroll();
		}

		$(window).resize(function() {
			sizeBox();
		});
		
		window.onload = sizePage;

*/

