function pics() {
	$("#content").fadeOut("slow", 	function () {
  									 	$("#content").load("pics.html", function(){
   																		setTimeout('$("#content").fadeIn(600);', 400);
																		});		
									});
	
}
function text() {
	$("#content").fadeOut("slow", 	function () {
  									 	$("#content").load("text.html", function(){
   																			$("#content").fadeIn("slow");
																		});		
									});
	
}

$(document).ready(function(){
    setTimeout("pics();",1000);
});

if(document.documentElement.clientHeight > 700) {
	document.getElementById("page").style.height = document.documentElement.clientHeight-10 + 'px';
}
