<!--

// Navigation drop down menu
$(document).ready(function() {
	// Services subnavigation
	var t = 75; // length before timeout
	var closeTimer = 0;
	
	$("#nav-services")
		.mouseover(function() { 
				navCancelTimer(); // cancel timer
				$("#subnav-services").fadeIn('slow');
		})
		.mouseout(function() {
			navSetTimer();								 
		}); 
	
	$("#subnav-services")
		.mouseover(function() { 
				navCancelTimer(); // cancel timer
		})
		.mouseout(function() {
			navSetTimer();								 
		}); 

	function navClose() {
		$("#subnav-services").fadeOut('slow');
	}
	
	function navSetTimer() {
		closeTimer = window.setTimeout(navClose, t); // trigger navClose() after timer length
	}

	function navCancelTimer() {
		if(closeTimer) {
				window.clearTimeout(closeTimer);
				closeTimer = null;
			}	
	}
});




// Close window
var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

// Pop up window (full-screen version)
function popUpWin(url, type, strWidth, strHeight){
	
	closeWin();
	
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 160;
	}
	
	var tools="";
	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}


// Panels
var panels = new Array('panel1', 'panel2', 'panel3', 'panel4', 'panel5', 'panel6', 'panel7', 'panel8', 'panel9', 'panel10');
var selectedTab = null;
function showPanel(tab, name)
  {
	if (selectedTab) 
	{
	  selectedTab.style.color = '';
	  //selectedTab.style.backgroundPositionY = '0';
	  selectedTab.id = '';
	  //if (name !== 'panel3') { $("#fobject").remove(); break;  }  
	  
	}
	selectedTab = tab;
	selectedTab.style.color = 'white';
	//selectedTab.style.backgroundPositionY = '-25px';
	 selectedTab.id = 'active_tab';
	for(i = 0; i < panels.length; i++)
	{
	  document.getElementById(panels[i]).style.display = (name == panels[i]) ? 'block':'none';
	}
	
	return false;
  }
  
//--> 
