// JavaScript Document
function hindi(){
            var sPath = window.location.pathname;
            if(sPath.match("/hindi") != null)
                        window.location.href =sPath;
            else
                        window.location.href ="/hindi"+sPath;
}
function english(){
            var sPath = window.location.pathname;
            if(sPath.match("/hindi") != null)
            {
                        window.location.href = sPath.slice(6);
                        }
            else
                        window.location.href = sPath;
}
