﻿var v20 = {
	mouseOver : function(t) {
		t.src = this.strReplace('.gif', '_over.gif', t.src);
	},
	mouseOut : function(t) {
		t.src = this.strReplace('_over.gif', '.gif', t.src);
	},
	strReplace : function(str1, str2, str3) {
		var r = new RegExp(str1, 'g');
		return str3.replace(r, str2);
	},
	menuOver : function(t) {
		t.style.backgroundColor='#f4f4f4';
	},
	menuOut : function(t) {
		t.style.backgroundColor='';
	},
	toggle : function(id) {
		t = document.getElementById(id);
		if(t.style.display == '') {
			Effect.SlideUp(id);
		} else {
			Effect.SlideDown(id);
		}
	}
}