function doTranslate(lang_pair) {
        if (((location.hostname == 'www.isabsodcp.org')||(location.hostname == 'isabsodcp.org')) && lang_pair == 'en|en') return;
        else if(((location.hostname != 'www.isabsodcp.org')||(location.hostname != 'isabsodcp.org')) && lang_pair == 'en|en') 
        {
        	//alert("one");
        	location.href = gfg('u');
        }
        else if(((location.hostname == 'www.isabsodcp.org')||(location.hostname == 'isabsodcp.org')) && lang_pair != 'en|en') 
        {
     	   //alert("two");
     	   location.href = 'http://translate.google.com/translate_p?client=tmpg&hl=en&langpair=' + lang_pair + '&u=' + location.href;
        }
		else 
		{
			//alert("three");
			location.href = 'http://translate.google.com/translate_p?client=tmpg&hl=en&langpair=' + lang_pair + '&u=' + gfg('u');
		}
		
}
// get from get
function gfg(name) {
		//alert("name="+name);
        name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
        var regexS = "[\\?&]"+name+"=([^&#]*)";
        var regex = new RegExp(regexS);
        var results = regex.exec(location.href);
        if(results == null) return '';
       // alert(results[1])
        return results[1];
}

function getTheEffect(id)
{
    //alert(i);
	var href_tag=document.getElementById(id);
	href_tag.className="item_active";
}