



function resizeStrip(){
		
	//debugger
	
	var imgStripe = $('stripe'); //get the image element
	var topOffset = 5; //used because height is always slightly more than really is
	var top = imgStripe.currentStyle.top;
	top = top.substring(0, top.length - top.indexOf('px')); //remove 'px' from height
	
	var newHeight = 0;
	
	if (document.body.offsetHeight) 
	{
		newHeight = document.body.offsetHeight - top - topOffset; 
	} 
	else if (window.innerHeight) 
	{
		newHeight = window.innerHeight - top - topOffset;
	} 
	else
	{
		newHeight = '100%';
	} 
	
	//window.status = "Scroll Y = " + String(getScrollY())
	//window.status = document.body.offsetHeight;
	
	imgStripe.height = newHeight + getScrollY();	
		
	//debugger
		
	//imgStripe.style.height = newHeight + getScrollY();	
}














			
				
	function startHover(obj){ 

		if (currentFocus.length > 0) {
			if (currentFocus == obj.id) { 
				return false;
			}
		}
		
		if (obj.id.substring(0,3) != "btn") {
			obj.className="inputhover";
		}
		else
		{
			obj.className="formInputButtonHover";
		}
		
	}

	function endHover(obj){ 

		if (currentFocus.length > 0) {
			if (currentFocus == obj.id) {
				return false;
			}
		}
		
		if (obj.id.substring(0,3) != "btn") {
			obj.className="inputNormal";
		}
		else
		{
			obj.className="formInputButton";
		}
	}
				







