var arrBrandingImg=new Array("home_top");
var delay=15000;
function init()
{
	setTimeout("swapBrandingImg(0)",delay);
}

function swapBrandingImg(next)
{
	var img= document.getElementById("brandingImg");
	//img.filter.
	var duration="1";
	
	if(is.ie && is.platform=="win32")
	{
		img.style.filter='blendTrans(duration='+duration+')';
		img.filters[0].apply();
		img.src="/images/home/"+arrBrandingImg[next]+".jpg";
		img.filters[0].play();
	
		if (next==arrBrandingImg.length-1) next=0;
		else next++;
		
		setTimeout("swapBrandingImg("+next+")",delay);
	}
	else
	{	
		img.src="/images/home/"+arrBrandingImg[next]+".jpg";
	
		if (next==arrBrandingImg.length-1) next=0;
		else next++;
		
		setTimeout("swapBrandingImg("+next+")",delay);
	}
}


function showMe(objName)
{

			if(document.all) 	{
				eval("document.all."+objName+".style.visibility='visible'");
			}

            else	{
                 eval("document.getElementById('"+objName+"').style.visibility='visible'");
        	}
}

function hideMe(objName)
{

			if(document.all) 	{
				eval("document.all."+objName+".style.visibility='hidden'");
			}

            else	{
                 eval("document.getElementById('"+objName+"').style.visibility='hidden'");
        	}
}
function goToCountry(strCountry){
	/* called from  the flash file - go to generic editorial if string is 'india' */
	if (strCountry=="india") {
		location = "http://www.cliffordchance.com/india";
	}else if(strCountry=="hungary") {//this sections is added by bhupinder on 20 July 09 to resolve flash file redirect the issue for hungary Country
		location = "http://www.cliffordchance.com/hungary";
	}else {
		location = "/Expertise/Locations/details.aspx?strCountry="+strCountry;
	} 
}


