function checkBrowser(){
	this.ver=navigator.appVersion
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
	return this
}
bw=new checkBrowser()

nPlace=0

var nNumberOfMenus=2

var nMwidth=163
var nPxbetween=1
var nFromleft=138
var nFromtop=14
var nBgcolor='#6a789d'
var nBgcolorchangeto='#fc0000'
var nImageheight=25
var mawmenu = new Array(nNumberOfMenus)

function makeNewsMenu(obj,nest){
	nest=(!nest) ? '':'document.'+nest+'.'
	this.css=bw.dom? document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+"document.layers." +obj):0;		
	this.evnt=bw.dom? document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+"document.layers." +obj):0;			
	this.scrollHeight=bw.ns4?this.css.document.height:this.evnt.offsetHeight
	this.moveIt=b_moveIt;this.bgChange=b_bgChange;
	this.slideUp=b_slideUp; this.slideDown=b_slideDown;
	this.clipTo=b_clipTo;
	this.obj = obj + "Object"; 	eval(this.obj + "=this")
}
function b_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x; this.css.top=this.y}
function b_bgChange(color){if(bw.dom || bw.ie4) this.css.backgroundColor=color; else this.css.bgColor=color}
function b_clipTo(t,r,b,l){
	if(bw.ns4){this.css.clip.top=t; this.css.clip.right=r; this.css.clip.bottom=b; this.css.clip.left=l
	}else this.css.clip="rect("+t+","+r+","+b+","+l+")";
}
function b_slideUp(ystop,moveby,speed,fn,wh){
	if(!this.slideactive){
		if(this.y>ystop){
			this.moveIt(this.x,this.y-5); eval(wh)
			setTimeout(this.obj+".slideUp("+ystop+","+moveby+","+speed+",'"+fn+"','"+wh+"')",speed)
		}else{
			this.slideactive=false; this.moveIt(0,ystop); eval(fn)
		}
	}
}
function b_slideDown(ystop,moveby,speed,fn,wh){
	if(!this.slideactive){
		if(this.y<ystop){
			this.moveIt(this.x,this.y+5); eval(wh)
			setTimeout(this.obj+".slideDown("+ystop+","+moveby+","+speed+",'"+fn+"','"+wh+"')",speed)
		}else{
			this.slideactive=false; this.moveIt(0,ystop); eval(fn)
		}
	}
}
function newsMenuInit(){
	oTopMenu=new Array()
	zindex=10
	for(i=0;i<=nNumberOfMenus;i++){
		oTopMenu[i]=new Array()
		oTopMenu[i][0]=new makeNewsMenu('divTopMenu'+i)
		oTopMenu[i][1]=new makeNewsMenu('divTopMenuBottom'+i,'divTopMenu'+i)
		oTopMenu[i][2]=new makeNewsMenu('divTopMenuText'+i,'divTopMenu'+i)
		oTopMenu[i][1].moveIt(0,nImageheight)
		oTopMenu[i][0].clipTo(0,nMwidth,nImageheight+3,0)
		if(!nPlace) oTopMenu[i][0].moveIt(i*nMwidth+nFromleft+(i*nPxbetween),nFromtop)
		else{
			oTopMenu[i][0].moveIt(nFromleft,i*nImageheight+nFromtop+(i*nPxbetween))
			oTopMenu[i][0].css.zIndex=zindex--
		}
		oTopMenu[i][0].css.visibility="visible"
	}
}
function topMenu(num){
	if(oTopMenu[num][1].y==nImageheight) oTopMenu[num][1].slideDown(oTopMenu[num][2].scrollHeight+20,10,40,'oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)','oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)')
	else if(oTopMenu[num][1].y==oTopMenu[num][2].scrollHeight+20) oTopMenu[num][1].slideUp(nImageheight,10,40,'oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)','oTopMenu['+num+'][0].clipTo(0,nMwidth,oTopMenu['+num+'][1].y+3,0)')
	updateCookie(oTopMenu)
}
function menuOver(num){oTopMenu[num][1].bgChange(nBgcolorchangeto)}
function menuOut(num){oTopMenu[num][1].bgChange(nBgcolor)}
function readCookie(mawmenu){
	mawmenu[0]=nImageheight
	mawmenu[1]=nImageheight
	mawmenu[2]=nImageheight
	cookie=document.cookie
	mawmenu[0]=getNumberValue(cookie,"mawmenu[0]")
	mawmenu[1]=getNumberValue(cookie,"mawmenu[1]")
	mawmenu[2]=getNumberValue(cookie,"mawmenu[2]")
	return mawmenu
}
function getNumberValue(s,n){
	s=removeBlanks(s)
	var pairs=s.split(";")
	for(var k=0;k<pairs.length;++k) {
		var pairSplit=pairs[k].split("=")
		if(pairSplit[0]==n) {
			if(pairSplit.length>1) return parseInt(pairSplit[1])
			else return nImageheight
		}
	}
	return nImageheight
}
function removeBlanks(s) {
	var temp=""
	for(var k=0;k<s.length;++k) {
		var c=s.charAt(k)
		if(c!=" ") temp += c
	}
	return temp
}
function updateCookie(oTopMenu) {
	var expires=dateCookie()
	document.cookie="mawmenu[0]="+oTopMenu[0][1].y+";expires="+expires
	document.cookie="mawmenu[1]="+oTopMenu[1][1].y+";expires="+expires
	document.cookie="mawmenu[2]="+oTopMenu[2][1].y+";expires="+expires
}
function dateCookie() {
	var now = new Date();
	var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
	var months = new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
	var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
	var month = months[now.getMonth()];
	var year = (([now.getYear()-2000]<10) ? "0" : "")+ [now.getYear()-2000];
	var expires = days[now.getDay()]+", "+date+'-'+month+'-'+year+" 23:59:59 GMT"
	return expires
}
function resetMenu(mawmenu) {
	if(mawmenu[0]>127 || mawmenu[0]==30) {
		topMenu(0) 
		menuOut(0)
	}
	if(mawmenu[1]>99 || mawmenu[1]==30) {
		topMenu(1) 
		menuOut(1)
	}
	if(mawmenu[2]>85 || mawmenu[2]==30) {
		topMenu(2) 
		menuOut(2)
	}
}
mawmenu=readCookie(mawmenu);
newsMenuInit();
resetMenu(mawmenu);