/*Javascript for all pages*/

var num = -1; //For the walking text

function slideMove(url){
	$("#all").slideUp("medium", function(){document.location = url;});
}

function bgImage(img, center){
	if(center){
		position = "center center";
	} else{
		position = "top left";
	}
	$("document").ready(function(){
		$("body").css("background", "transparent url(" + img + ") no-repeat " + position);
	});
}

function bgColor(color){
	$("document").ready(function(){
		$("body").css("background-color", color);
	});
}

function wordWalkInit(){
	$(document).ready(function() {
		fadeInNext();
	});
}
function fadeInNext(){
	num++;
	if(document.getElementById("text" + num)){
		setTimeout(function(){$("#text" + num).fadeIn("medium", fadeInNext())}, 2500);
	}
}
