<!--
var backgroundImage = new Image();
backgroundImage.src = "../images/bg6.jpg";

var latestNews = new Image();
latestNews.src = "../images/latestNews.gif";
    
$(document).ready(function() {    
                var timeout = null;                
		$('#submenu2').hide();
                $('#submenu6').hide();
                
           $('#nav2').hover(function() {
                                $('#submenu2').show();
                                $('#nav2').removeClass('nav');
                                $('#nav2').addClass('navSelected');
                            },
                            function(){
                                timeout = setTimeout(function(){
                                                        $('#nav2').removeClass('navSelected');
                                                        $('#nav2').addClass('nav');
                                                        $('#submenu2').hide();
                                                     }, 25);
                                $('#submenu2').hover(function() {
                                                        if (timeout) clearTimeout(timeout);
                                                    },
                                                    function(){
                                                        $('#submenu2').hide();
                                                        $('#nav2').removeClass('navSelected');
                                                        $('#nav2').addClass('nav');
                                                    });
                            });
           $('#nav6').hover(function() {
                                $('#submenu6').show();
                                $('#nav6').removeClass('nav');
                                $('#nav6').addClass('navSelected');
                            },
                            function(){
                                timeout = setTimeout(function(){
                                                        $('#nav6').removeClass('navSelected');
                                                        $('#nav6').addClass('nav');
                                                        $('#submenu6').hide();
                                                     }, 25);
                                $('#submenu6').hover(function() {
                                                        if (timeout) clearTimeout(timeout);
                                                    },
                                                    function(){
                                                        $('#submenu6').hide();
                                                        $('#nav6').removeClass('navSelected');
                                                        $('#nav6').addClass('nav');
                                                    });
                            });
	});        

function clearLogin(b){
   var box=document.getElementById(b);
   if(box.value!=""){
    box.value="";
   }
}

function changefield(){
        document.getElementById("passwordBox").innerHTML = "<input id=\"password\" type=\"password\" name=\"password\" size=\"11\" />";
        document.getElementById("password").focus();
    }
//-->
