var preloadImg = new Image();
preloadImg.src = '/images/loading.gif';

function showAskForm() {
	askForm = document.getElementById('askform');
	askFormLink = document.getElementById('askformlink');
	if (askForm.className == "on") {
		askForm.className = "off";
		askFormLink.className = "grey";
	} else {
		askForm.className = "on";
		askFormLink.className = "pink";
	}
	document.getElementById('footer').style.bottom = 0;
}

function changeImg(id,order) {
	myImg = document.getElementById('myImage');
	myA = document.getElementById('myLink');
	myLoadingImg = document.getElementById('loadingImg');
	
	//myImg.src = '/images/loading.gif';
	tempImg = new Image();
	tempImg.src = "/getimg.php?id="+id+"&size=5";
	myImg.src = tempImg.src;
	
	tempA = myA.href.split("/");
	i = tempA.length;
	myA.href = "/"+tempA[i-7]+"/"+tempA[i-6]+"/"+tempA[i-5]+"/"+tempA[i-4]+"/"+tempA[i-3]+"/"+order+"/";

	document.getElementById('footer').style.bottom = 0;
}

function checkFooter() {
	document.getElementById('footer').style.bottom = '1px';
}
	