$(document).ready(function() { 
	$("#menu IMG").hover(function(){							
	   	this.original=$(this).attr("src");
	   	if (this.original.indexOf('_ov.')==-1) $(this).attr("src",this.original.replace(".gif","_ov.gif"));
		}, function () {
	     $(this).attr("src",this.original);
  	});
});

$(document).ready(function() { 
	$("#language_header IMG").hover(function(){							
	   	this.original=$(this).attr("src");
	   	if (this.original.indexOf('comming_soon.')==-1) $(this).attr("src",this.original.replace("lang3.gif","lang3.gif"));
		}, function () {
	     $(this).attr("src",this.original);
  	});
});

function OFlash (file, width, height, bgcolor, mode) { document.write ("<object codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0 height=" + height + " width=" + width + " classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000><PARAM NAME='FlashVars' VALUE=''><PARAM NAME='Movie' VALUE='" + file + "'><PARAM NAME='Src' VALUE='" + file + "'><PARAM NAME='WMode' VALUE='" + mode + "'><PARAM NAME='Play' VALUE='-1'><PARAM NAME='Loop' VALUE='-1'><PARAM NAME='Quality' VALUE='High'><PARAM NAME='SAlign' VALUE=''><PARAM NAME='Menu' VALUE='0'><PARAM NAME='Base' VALUE=''><PARAM NAME='AllowScriptAccess' VALUE='0'><PARAM NAME='Scale' VALUE='ShowAll'><PARAM NAME='DeviceFont' VALUE='0'><PARAM NAME='EmbedMovie' VALUE='0'><PARAM NAME='BGColor' VALUE='" + bgcolor +"'><PARAM NAME='SWRemote' VALUE=''><PARAM NAME='MovieData' VALUE=''><PARAM NAME='SeamlessTabbing' VALUE='1'><PARAM NAME='Profile' VALUE='0'><PARAM NAME='ProfileAddress' VALUE=''><PARAM NAME='ProfilePort' VALUE='0'><embed src='" + file + "' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + width + "' height='" + height +"'></embed></object>"); }

function start_scroll()
{
	if (document.all)
	{
		ieslider1.style.top=sheight;
		iemarquee(ieslider1);
		maxH=iediv.offsetHeight;
		maxH = maxH/2;
	}
	else
	{ 
	    if (document.getElementById&&!document.all)
	    {
		    document.getElementById('ieslider1').style.top=sheight + "px";
		    ns6marquee(document.getElementById('ieslider1'));
		    maxH=document.getElementById('ieslider1').offsetHeight;
		    maxH = maxH/2;
	    }
	}

}

function iemarquee(whichdiv)
{
	iediv=eval(whichdiv)

	if (iediv.style.pixelTop>=maxH*-1)
	{
		iediv.style.pixelTop-=sspeed
	}
	else
	{
		iediv.style.pixelTop=-1
	}
	setTimeout("iemarquee(iediv)",110)
}

function ns4marquee(whichlayer)
{
	ns4layer=eval(whichlayer);
	
	if (ns4layer.top>0&&ns4layer.top<=sspeed)
	{
		ns4layer.top=0
	}
	if (ns4layer.top>=maxH*-1)
	{
		ns4layer.top-=sspeed
	}
	else
	{
		ns4layer.top=-1
	}
	setTimeout("ns4marquee(ns4layer)",110)
}

function ns6marquee(whichdiv)
{
    ns6div=eval(whichdiv);  
	if (parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed)
	{
		ns6div.style.top=0+"px";
	}
	if (parseInt(ns6div.style.top)>=maxH*-1)
	{
		ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";
	}
	else
	{
		ns6div.style.top="-1px";
	}
	
	setTimeout("ns6marquee(ns6div)",110)
}