<!--
var dropwatchcount = 0;
var dropwatchtemp = null;

function resetDropWatch(){
	//alert("resetDropWatch");
	dropwatchcount = 0;
}
function dropWatch(){
	if(dropwatchtemp != null){
		clearInterval(dropwatchtemp);
	}
	if(dropwatchcount == 40){
		resetDropWatch();
		clearUpDrop(pulldownabout,pulldownfaqs,pulldowncontact,pulldownpackage,pulldownshowreel,pulldownprices);
	}else{
		dropwatchcount++;
	}
	dropwatchtemp = setInterval("dropWatch()",100);
}

function clearUpDrop(){// the variable names of div move string
		for(cudr=0;cudr<arguments.length;cudr++){
			var temptransfer = arguments[cudr];
			moveDivs(temptransfer);
		}
}

function clearUpContent(urltodo){
	clearUpDrop(pullupcontent);
	var timeoutnavigationstr = String("window.document.location.replace(\""+urltodo+"\")");
	setTimeout(timeoutnavigationstr,1450);
}

//variables for the scrollwathcer ----------
var currentscroll = 0;
var lastscroll = 0;
var scrollshiftobj = new Array();
scrollshiftobj[0] = "navigation";
scrollshiftobj[1] = "abouthint";
scrollshiftobj[2] = "packagehint";
scrollshiftobj[3] = "faqshint";
scrollshiftobj[4] = "showreelhint";
scrollshiftobj[5] = "contacthint";
scrollshiftobj[6] = "priceshint";
var scrollwatchtimer = setInterval("scrollWatcher()",500);
//------------------------------------------------
function scrollWatcher(){
	clearInterval(scrollwatchtimer);
	if(IE){
		currentscroll = document.body.scrollTop;
		if(currentscroll != lastscroll){
			var scrollshift = currentscroll - lastscroll;
			lastscroll = currentscroll;
			for(ssot=0;ssot<scrollshiftobj.length;ssot++){
				var tmp = getMyElementStyle(scrollshiftobj[ssot]);
				tmp.pixelTop += scrollshift;
			}
			scrollwatchtimer = setInterval("scrollWatcher()",200);
		}else{
			scrollwatchtimer = setInterval("scrollWatcher()",500);
		}
	}else if(NS){
		currentscroll = window.pageYOffset;
		if(currentscroll != lastscroll){
			var scrollshift = currentscroll - lastscroll;
			lastscroll = currentscroll;
			for(ssot=0;ssot<scrollshiftobj.length;ssot++){
				document[scrollshiftobj[ssot]].top += scrollshift;
			}
			scrollwatchtimer = setInterval("scrollWatcher()",200);
		}else{
			scrollwatchtimer = setInterval("scrollWatcher()",500);
		}
	}else if(IE5){
		currentscroll = window.pageYOffset;
		if(currentscroll != lastscroll){
			var scrollshift = currentscroll - lastscroll;
			lastscroll = currentscroll;
			for(ssot=0;ssot<scrollshiftobj.length;ssot++){
				var tmp = getMyElementStyle(scrollshiftobj[ssot]);
				tmp.top = (parseInt(tmp.top) + scrollshift) + "px";
			}
			scrollwatchtimer = setInterval("scrollWatcher()",200);
		}else{
			scrollwatchtimer = setInterval("scrollWatcher()",500);
		}
	}
}

//-->
