﻿//gNavIE6
jQuery(document).ready(function(){
	jQuery("#nav #about ").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { jQuery("ul", this).fadeOut("fast");} 
	);
	jQuery("#nav #members").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { jQuery("ul", this).fadeOut("fast");} 
	);
	jQuery("#nav #credentialers").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { jQuery("ul", this).fadeOut("fast");} 
	);
	jQuery("#nav #public").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { jQuery("ul", this).fadeOut("fast");} 
	);
	jQuery("#nav #news").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { jQuery("ul", this).fadeOut("fast");} 
	);
});

function ReceiveServerData(arg, context) {
    if (arg == "1") {
        document.getElementById("Message").innerHTML = "<h3>Your password has been emailed to the above address.</h3>";
    } else if (arg == "0") {
        document.getElementById("Message").innerHTML = "<h3 style='color:#FF3300;'>Sorry. That email address is not in our records. Please try again.</h3>";
    } else {
        document.getElementById("Message").innerHTML = "<h1 style='color:#FF3300;'>System Error: " + arg + "</h1>";
    }
}

function UpdateTrack() {        
    document.getElementById(sRes).value = screen.width + 'x' + screen.height;        
}