function overMouse(i)
    {
        for (j=1; j<=5; j++)
    {  
	    fd = document.getElementById('tab' + j);
	    t = document.getElementById('div' + j);
	    if (i == j)
		{   
	        t.style.display = "block";      
	        fd.style.background = "#8699d9";
	    }
	    else if (i != j)
		{ 
	        t.style.display = "none"; 
	        fd.style.background = "#b7bfda";
	    } 
    }
    }
function textClick(i)
    { 
    for (j=1;j<=3;j++)
        {  
        fd=document.getElementById('text'+j);
        if (i==j){   
            fd.style.display="block";      
            //alert(fd.style.width+'hhh'+j);
            //alert(fd.style.width+'hhh'+j); 
            //
              }
        else if (i!=j){ 
            fd.style.display="none"; 
            //alert(fd.style.width+'hhh'+j);
        } 
        }
    }