// JavaScript Document
<!--
	function menu_categories( linktext, hover ) {
	    if ( hover ) {
        linktext.style.backgroundColor = '#7AB4E5';
		linktext.style.color = '#FFFFFF';
		linktext.style.cursor='hand';
	    } else {
	    linktext.style.backgroundColor = '#5E99D3';
		linktext.style.color = '#FFFFFF';
		linktext.style.cursor='hand';


		
	    }
	}
	function navClick( linktext, url ) {
	    menu_categories( linktext, 0);
	    exit=false;
	    window.location.href = url;
	}
	
//-->
