﻿        var url="http://www.congoo.com/";
        var title="Congoo.com";

        function favorites()
        {
	        if(document.all)
		        window.external.AddFavorite(url,title);
		    
		    return false;
        }      
        function navHor( tableCellRef, hoverFlag, navStyle ) 
        {
	        if ( hoverFlag ) 
	        {
		        switch ( navStyle ) 
		        {
			        case 1:
			            tableCellRef.style.background = "url(http://www.congoo.com/images/navbarbluebgrollover.jpg) repeat-x";
				        //tableCellRef.style.backgroundColor = '#8ebae5';
				        break;
			        default:
				        if ( document.getElementsByTagName ) 
				        {
					        tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#fff';
				        }
		        }
	        } 
	        else 
	        {
		        switch ( navStyle ) 
		        {
			        case 1:
			            tableCellRef.style.background = "url(http://www.congoo.com/images/navbarbluebg.jpg) repeat-x";
				        //tableCellRef.style.backgroundColor = '#37618d';
				        break;
			        default:
				        if ( document.getElementsByTagName ) 
				        {
					        tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#fff';
				        }
		        }
	        }
        }